in reply to Re: Creating downloadable files on the fly
in thread Creating downloadable files on the fly
The $r->param method handles both GET and POST requests, similar to using CGI.pm.use Apache::Request; sub handler { my $r = Apache::Request->new(shift); my $test = $r->param('test'); # your code here... }
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 |