in reply to Perl Parameter

CGI has a debug mode you'll find useful.

>perl -MCGI -MData::Dumper -e"print Dumper { CGI::Vars() }" "a=b&c=d" $VAR1 = { 'a' => 'b', 'c' => 'd' }; >perl -MCGI -MData::Dumper -e"print Dumper { CGI::Vars() }" a=b c=d $VAR1 = { 'a' => 'b', 'c' => 'd' };

See the "DEBUGGING" section of CGI for more.