Help for this page

Select Code to Download


  1. or download this
    use CGI;
    my $qry = new CGI;
    ...
    }
    
    print "Arg(0) is [$ARGV[0]], param list is [", $qry->param(),"]\n";
    
  2. or download this
    perl stuff.pl a b c
    Arg[0] = a
    ...
    key, value are keywords, b
    key, value are keywords, c
    Arg(0) is [a], param list is [keywords]
    
  3. or download this
    perl stuff.pl a b=
    Arg[0] = a
    ...
    key-only is a
    key-only is b
    Arg(0) is [a], param list is [ab]
    
  4. or download this
    http:...stuff.cgi?a&b