Help for this page

Select Code to Download


  1. or download this
    read (STDIN, $temp, $ENV{'CONTENT_LENGTH'});
    @pairs = split(/&/, $temp);
    ...
            $value =~ s/\t/ /g;
            $value =~ s/\0//g;
    }
    
  2. or download this
    $value =~ tr/+/ /;
    
  3. or download this
    $value =~ s/%(..)/pack("c", hex($1))/ge;
    
  4. or download this
    $value =~ s/\t/ /g;
    
  5. or download this
    $value =~ s/\0//g;