in reply to Re: Creating downloadable files on the fly
in thread Creating downloadable files on the fly

Like this:
use Apache::Request; sub handler { my $r = Apache::Request->new(shift); my $test = $r->param('test'); # your code here... }
The $r->param method handles both GET and POST requests, similar to using CGI.pm.

I would recommend you get a copy of The Eagle Book - this will tell you everything you need to know.

JJ

Replies are listed 'Best First'.
Re: Creating downloadable files on the fly
by surfmonkey (Acolyte) on Oct 11, 2002 at 09:47 UTC
    OK, I have now picked up a copy of the Eagle book and the mod_perl developers cookbook. Thanks for all your help, it's really appreciated. S'monkey