Re: How to parse after reading POST data in mod_perl 2 ?

2002-11-04 Thread Sumitro Chowdhury
Thanks Philippe for the tip. After looking at Apache2::Apache::compat and some input from Randy Kobes, I came up with the following package called getform.pm which gets the form data into a hash without using Apache::compat. (Hope it will help some newbie !!): package ModPerl::getform; use

How to parse after reading POST data in mod_perl 2 ?

2002-10-31 Thread Sumitro Chowdhury
Hi all, Please help ... Using Apache/2.0.43 (Unix) mod_perl/1.99_07-dev Perl/v5.8.0 . I read in POST data from Form using $r-read($buff,$r-headers_in-{'Content-length'}) Since I donot use Apache::compat, what API methods are available to parse this string data ? ( possibly convert it to a hash