in reply to How to cycle through CGI query params?
and it works just as well if you assign to a hashref rather than a hash.my %var = $query->Vars; for my $param (keys %var) { my $param_value = $var{$param}; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: How to cycle through CGI query params?
by ikegami (Patriarch) on Oct 25, 2006 at 02:58 UTC | |
|
Re^2: How to cycle through CGI query params?
by pKai (Priest) on Oct 25, 2006 at 21:07 UTC |