in reply to FastCGI form debugging
while ( my $q = new CGI::Fast ) { my %formvariabel = Get_formvalues($q); } sub Get_formvalues { my $query = shift; my $request_method = $query->request_method; if ( $request_method eq 'GET' || $request_method eq 'POST' ) { return map { $_ => join "\n", $query->param($_) } $query->para +m; } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: FastCGI form debugging
by DreamT (Pilgrim) on Apr 16, 2009 at 12:42 UTC | |
by Anonymous Monk on Apr 16, 2009 at 14:02 UTC |