in reply to Dereferencing my hash?
Had you done so, you would probably have been able to tell that, in
, you are attempting to assign a hash ref. to a hash (perlref)... try eithermy %cookie_hash = $IN->{cookies};
or, the more usual,my %cookie_hash = %{ $IN->{cookies} };
...my $cookie_hash = $IN->{cookies};
|
|---|