On 1/16/07, Issac Goldstand <[EMAIL PROTECTED]> wrote:
Instead of doing:
my $q=CGI->new;
my $param=$q->param('foo');
One needs to do:
my $req=Apache2::Request->new($r);
my $param=$req->param('foo');
I still fail to see the difficulty...
Agreed. It's not difficult to *use*, just a little interesting to install in the first place. At least, it used to be. I know I had some fun trying to get it to compile on Solaris a year or so back. -- Kevin.
