Help for this page

Select Code to Download


  1. or download this
        #!/usr/local/bin/perl -w
        use strict;
    ...
    
        print map $_ . " => " . $q->param($_) . "\n",
            $q->param;
    
  2. or download this
        % foo.cgi foo=bar baz=quux
        foo => bar
        baz => quux