mjgp2 has asked for the wisdom of the Perl Monks concerning the following question:
produces this:use CGI; $query = CGI->new(); my $urlG = $query->url_param("urlRedirect"); my $urlP = $query->param("urlRedirect"); print $query->header, $query->start_html('A Simple Example'); print("CGI version: ".(CGI->VERSION)."<BR>"); print("Url redirect: form=>$urlP, url=>$urlG<BR>");
CGI version: 3.09 Url redirect: form=>TEST, url=>TESTThere is NO posted form data though! Help!
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: GET variables overwriting POST variables
by Aristotle (Chancellor) on Nov 16, 2005 at 13:07 UTC | |
|
Re: GET variables overwriting POST variables
by derby (Abbot) on Nov 16, 2005 at 13:57 UTC |