in reply to Re: Accessing hash elements inside another hash
in thread Accessing hash elements inside another hash
my %Data = getQueues(); while (my ($key,$value) = each(%Data)){ #print "$key = $value \n"; for(my ($k,$v) = each($key->{'Queues'})){ print "$k = $v \n"; } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Accessing hash elements inside another hash
by jrsimmon (Hermit) on Mar 11, 2009 at 17:35 UTC | |
by shmem (Chancellor) on Mar 11, 2009 at 23:08 UTC |