in reply to I've got a hash of hashes how do i get my values out
Or, to go directly to a particular value given the two keys that define it:
my $val = $hash{$key1}{$key2}; [download]