Help for this page

Select Code to Download


  1. or download this
        if ($ENV{'REQUEST_METHOD'} eq 'GET') {
                $buffer = $ENV{'QUERY_STRING'};
    ...
                $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C", hex($1))/e
    +g;
                $FORM{$name} = $value;
        }
    
  2. or download this
    use CGI ':standard';
    my %FORM = CGI->Vars;