in reply to get and post request methods

If you tack on a GET-style query to a POST, it will be accessible via ->url_param() rather than ->param(). This is the case for both CGI and CGI::Simple.

Update: I misunderstood your question. The answer is: use CGI or CGI::Simple. Whether POST or GET, the parameters will be available using ->param().

Replies are listed 'Best First'.
Re^2: get and post request methods
by almut (Canon) on Mar 07, 2009 at 01:27 UTC

    CGI::Simple also has parse_query_string() for this purpose — i.e. after having called it, GET-style parameters will also be accessible via the normal ->param(), with a POST request.