Help for this page

Select Code to Download


  1. or download this
    while (my($n,$v) = each %input) { print "$n: $v<br>"; }
    
  2. or download this
    #!c:/perl/bin/perl -w
    use strict;
    ...
    my %input = CGI::Vars;
    print "Content-type: text/html\n\n";
    while (my($n,$v) = each %input) { print "$n: $v<br>"; }