thil has asked for the wisdom of the Perl Monks concerning the following question:
Hi,
I'm having a problem with accessing POST data through Apache::Request object.
here is my code snippet which accesses the request data.
use Apache::Request; my $apr = Apache::Request->new(shift); my $test=$r->param('POST_PARAM_NAME');
I can't access the POST data by param. But I can access the same POST data if I replace Apache::Request with CGI.
I am running my applications in Apache 1.3, which is mod-perl enabled.
I am sort of a beginner to Perl. Can anybody help me with this??
Thanks.
Thilani
20060808 Janitored by Corion: Added formatting, code tags, as per Writeup Formatting Tips
|
|---|