on Tue, 14 May 2002 16:43:42 GMT, [EMAIL PROTECTED] (Joe Mecklin)
wrote:
> ($connect_id = ars_Login($server, $userid, $password)) || die
> "Can't login:$ars_errstr\n";
If you use 'or' instead of '||' you won't need the silly looking
outer '()'.
> (%properties = ars_GetField($con
Try this:
$val = $properties{"fieldName"};
# To print the owner just use this:
print $properties{"owner"}." whatever else\n";
Here's a link to the docs (in case you don't have it already).
http://arsinfo.cit.buffalo.edu/perl/manual/ds_field_hash.html
Hope this helps.
(BTW: Also, your questi