Help for this page

Select Code to Download


  1. or download this
    use strict;
    use CGI;
    ...
    my $string = "name=alex&sex=m&age=20";
    my $q=CGI->new($string);
    print Dumper scalar $q->Vars()"
    
  2. or download this
    use strict;
    use CGI;
    ...
    print $q->header('text/plain');
    print Dumper scalar $q->Vars()"