Help for this page

Select Code to Download


  1. or download this
    use CGI qw(param header);
    
    ...
    } else {
       # print form
    }
    
  2. or download this
    my $q = CGI->new;
    my @CGIValues = values %{$q->Vars};
    
  3. or download this
    my %param = $q->Vars;   #update: typo (was %q->Vars) thanks BUU