Help for this page

Select Code to Download


  1. or download this
    $value =~s/<!--(.|\n)*-->//g;
    
  2. 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;
    }
    
  3. or download this
    use CGI qw/:standard/;
    my @sports = param( 'sports' );