Re: How to parse GET and POST methods in mod_perl 2.0

2005-04-07 Thread Perrin Harkins
On Thu, 2005-04-07 at 15:44 +, Durga Prasad Mohapatra wrote: > I have done all of my programs using apache1.3 and modperl 1.0. Now i want to > port all of my modperl programs to mod_perl 2.0 and apache2 without using > Apache::compat. I am facing problem in first step, for parsing methods i.e

Re: How to parse GET and POST methods in mod_perl 2.0

2005-04-07 Thread Jonathan Vanasco
I just do this: use Apache::Request () sub handler { my $r = shift; my $apr = Apache::Request->new( $r , DISABLE_UPLOADS=>0, POST_MAX=>10 ); $get_var = $apr->param('fieldname'); $post_var = $apr->param('fieldname'); } On Apr 7, 2005, at 11:44 AM, Durga Prasad Mohapatra wrote: H