powerhouse has asked for the wisdom of the Perl Monks concerning the following question:
$query would contain the data posted to the form, in a certain order... Would I have the same order by putting them this way:read (STDIN, $query, $ENV{'CONTENT_LENGTH'});
foreach my $f (param()) { $query .= "&" if $query && $query ne ""; $query .= "$f=" . param($f); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: CGI.pm and QUERY_STRING
by tachyon (Chancellor) on Apr 07, 2004 at 03:31 UTC | |
by powerhouse (Friar) on Apr 07, 2004 at 03:50 UTC | |
by cLive ;-) (Prior) on Apr 07, 2004 at 06:52 UTC |