in reply to Dereferencing my hash?

foreach my $group (keys %$cookie_hash) { # note the $

Replies are listed 'Best First'.
Re^2: Dereferencing my hash?
by Anonymous Monk on Feb 11, 2009 at 01:46 UTC
    Thanks to all... Your help got on the right track to here:
    my %hash = %{ $IN->{cookies} }; foreach my $k (keys %hash) { print "$hash{$k}[0]\n"; }