in reply to Perl Array Question
foreach my $item ( @{$hash{1}} ) { ....... [download]
You basically have to dereference the anonymous array ref held in $hash{1}.
Dave