in reply to (Ovid) Re: Passing Params
in thread Passing Params
In the second snippet, it's simpler to use an anonymous array: my %hash = map {$_, [$query->param($_)]} @names; The new CGI method for getting a hash of the parameters is Vars(): my %hash = $query->Vars(); However, that uses the cgi-lib approach of joining multiple values with "\0". :/
|
|---|