in reply to Re: Getting response from a form
in thread Getting response from a form

Actually, the param method returns a list of the parameter names, not a hash.

So you should just use

for my $param ($q->param) { print $param, " => ", $q->param($param), "\n"; }