in reply to Re^2: Problem with getting POST request data with Apache::Request object
in thread Problem with getting POST request data with Apache::Request object

Try this instead, see what happens:
my $test = $page->param('school');

---
It's all fine and dandy until someone has to look at the code.
  • Comment on Re^3: Problem with getting POST request data with Apache::Request object
  • Download Code

Replies are listed 'Best First'.
Re^4: Problem with getting POST request data with Apache::Request object
by thil (Sexton) on Aug 09, 2006 at 03:41 UTC

    Yes, I could access the POST data using the CGI object.
    That is,
    my $test = $page->param('school');
    gave me the result - 'test'.

    Thilani