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
    I bet you're right [id://ikegami], thanks. I will test it as soon as I get back into the office tomorrow and post an update.

    Update: You're right, [id://ikegami]. Once again, all my troubles are reduced to something really stupid. :)