in reply to Access Hash References

Accessing them one by one:

$soapResult{ClaimKindOfLossDT}{ClaimId};

Accessing them in bulk:

while (my ($parent_key,$hashref) = each %soapResult) { print "$parent_key:\n"; while (my ($info_key,$value) = each %$hashref) { print "\t$info_key: $value\n"; } }

Cheers,
Ovid

New address of my CGI Course.

Replies are listed 'Best First'.
Re: Re: Access Hash References
by SmokeyB (Scribe) on Sep 16, 2003 at 14:06 UTC
    Thanks Ovid! This really helped me out!! Cheers!