On Mon, 24 Sep 2007 16:22:00 +0800
"lists user" <[EMAIL PROTECTED]> wrote:

> Rather than use Apache2::Request to get user's request data,
> 
>     $req = Apache2::Request->new($r);
>     @foo = $req->param("foo");
> 
> 
> how can I use pure mp2 methods to do it? thanks.

  Well you *could* jump through a bunch of hoops to get the
  raw URI for GETs or the POST body, decode the data, etc.
  but why on earth would you want to do that? 

  What you are doing above is one of the two recommended ways
  of getting your request, it also happens to be the fastest.
  The other method is to use CGI.pm as you would in a normal
  CGI. 

 -------------------------------------------------------
   Frank Wiles, Revolution Systems, LLC. 
     Personal : [EMAIL PROTECTED]  http://www.wiles.org
     Work     : [EMAIL PROTECTED] http://www.revsys.com 

Reply via email to