in reply to Why does CGI.pm's param check GET xor POST?
and by doing so, you have no access to location parm via:<form method="post" action="/cgi-bin/myScript?location=value">
If this is the case, I would suggest you use a hidden parameter ala:my $location = param('location');
you can then access the location value via the param call.<form method="post" action="/cgi-bin/myScript"> <input type="hidden" name="location" value="val">
UPDATE: in re-reading, it appears that you are wanting the form var to appear in the browser location field for a POSTed form. If this is the case, then I am not sure there is a solution
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Why does CGI.pm's param check GET xor POST?
by elusion (Curate) on Apr 05, 2002 at 16:33 UTC |