in reply to CGI::Vars weirdness
If you would like to have the QUERY_STRING directly you can parse $ENV{QUERY_STRING};
Note that this has a slightly different structure that the structure ruturned by CGI::Vars.my @values = split(/&/,$ENV{QUERY_STRING}); foreach my $i (@values) { my ($name, $value) = split(/=/, $i); push(@{$keys{$name}}, $value); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: CGI::Vars weirdness
by chromatic (Archbishop) on Apr 04, 2008 at 05:38 UTC | |
by ikegami (Patriarch) on Apr 04, 2008 at 06:50 UTC |