in reply to cgi->vars() unexpected results
That is what I expected because that's what the docs say to expect (the CGI and the Data::Dumper docs).perl - 1=1 2=2 1=3 1=5 use CGI; use Data::Dumper; local $Data::Dumper::Useqq=1; local $Data::Dumper::Indent=1; print Dumper( scalar CGI->new->Vars ),$/; __END__ $VAR1 = { 1 => "1\0003\0005", 2 => 2 };
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: cgi->vars() unexpected results
by Gerard (Pilgrim) on Apr 22, 2004 at 06:21 UTC | |
by PodMaster (Abbot) on Apr 22, 2004 at 06:59 UTC |