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