Help for this page

Select Code to Download


  1. or download this
    use CGI qw/:standard/;
    read(STDIN, $formdata, $ENV{'CONTENT_LENGTH'});
    ...
        $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C", hex($1))/eg;
        $FORM{$name} = $value;
    }