Help for this page

Select Code to Download


  1. or download this
    sub GetParams
    {
    ...
        }
        return $webparams;
    }
    
  2. or download this
    $hash{input_name}[0]
    $hash{input_name}[1]
    
  3. or download this
    sub GetParamsHash
    {
    ...
        }
        return %webparams3;
    }
    
  4. or download this
    sub DecodeURL
    {
    ...
        $text =~ s/%([a-f0-9][a-f0-9])/chr(hex($1))/eig;
        return $text;
    }