in reply to GET overriding POST?
So as soon as that query string is detected, the method is set to GET, and it will override the POST.if ($ENV{'REQUEST_METHOD'} eq "GET") { $form_data = $ENV{'QUERY_STRING'}; } else { $form_data = <STDIN>;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: GET overriding POST?
by Anonymous Monk on Mar 17, 2006 at 20:06 UTC |