in reply to I've got a hash of hashes how do i get my values out
Simple as stated in the Camel:
foreach $item (keys %hash){ print "$item: "; foreach $iteminitem (keys %{$hash{$item}}){ print "$iteminitem = $hash{$item}{$iteminitem} "; } print "\n"; }
Read the chapter on Data structures in the Camel book.
Happy coding,
C-Keen
In Section
Seekers of Perl Wisdom