![]() |
|
Pathologically Eclectic Rubbish Lister | |
PerlMonks |
Re: How to access info from the arrayby arturo (Vicar) |
on Nov 12, 2002 at 21:20 UTC ( #212416=note: print w/replies, xml ) | Need Help?? |
General answer : References quick reference. More specific answer: $data{$formname} is an entry in a hash. The wrapping of the @{ ... } around it indicates that this hash entry is a reference to an array. What's being pushed onto the array is an anonymous hash (reference to a hash with no name). Putting that together listily:
So, to iterate over the keys of that (anonymous) hash, you might do
HTH If not P, what? Q maybe?
In Section
Seekers of Perl Wisdom
|
|