in reply to Re^5: CGI Parameters
in thread CGI Parameters
If you merge the GET and POST params before calling import_names, parameters of both types will be imported.
for my $param ($cgi->url_params()) { $cgi->append( -name => $param, -values => [ $cgi->url_param($param) ], ); }
The unusual is doable. It just takes a bit more work.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^7: CGI Parameters
by salazar (Scribe) on May 24, 2009 at 08:22 UTC |