Re: clearing a parameter using Apache::Request

2005-01-07 Thread Tom Schindl
You don't state which Version of mp you are using but Yes you can in both generations, by using the Apache::Table/APR::Table-Object. I have not tested it but as far as I understand the docs this could should work. 8< use mod_perl; my $apr = Apache::Request->new($r)

Re: clearing a parameter using Apache::Request

2005-01-06 Thread Pratik
Yeah ! Just do : my $cgi = CGI->new(); -Pratik On Thu, 6 Jan 2005 06:07:52 -0800 (PST), [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > Hi Sean ! > > > > You can use "my $cgi = CGI->new($r);" in your request handler to get > > the CGI object. > > > > Thanks, > > Pratik > Hi all, > I'd also be

Re: clearing a parameter using Apache::Request

2005-01-06 Thread greger
> Hi Sean ! > > You can use "my $cgi = CGI->new($r);" in your request handler to get > the CGI object. > > Thanks, > Pratik Hi all, I'd also be interested to know if it is possible to get the params, alter them, from mod_perl without using the request object method... anyone? /Greger -- www.gh-webi

Re: clearing a parameter using Apache::Request

2005-01-06 Thread Pratik
Hi Sean ! You can use "my $cgi = CGI->new($r);" in your request handler to get the CGI object. Thanks, Pratik On Thu, 6 Jan 2005 07:42:12 -0500, Sean Davis <[EMAIL PROTECTED]> wrote: > I have a script that can submit back to itself. If the script is being > entered from somewhere else, then th

clearing a parameter using Apache::Request

2005-01-06 Thread Sean Davis
I have a script that can submit back to itself. If the script is being entered from somewhere else, then the "submitted" form parameter is not present and the form is presented. If the parameter "submitted" is present, then I want to process the form. However, if the processing "fails", I wa