in reply to Apache::Request::param working for GET but not POST
I bet your CGI->new is sucking the POST parameters from the stream, readering them unavailable to Apache::Request. Unlike GET parameters, POST parameters can only be read once. (CGI reads both GET and POST parameters when new is called, and stores them in the returned object.)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Apache::Request::param working for GET but not POST
by friedo (Prior) on Feb 07, 2005 at 06:17 UTC |