Thanks for the code, I new and just am trying to change a perl written script for me.So I tryed it and found some thing I think has to be changed to before it works.
sub urldecode{
local($val)=@_;
$val=~s/\+/ /g;
$val=~s/%([0-9a-hA-H]{2})/pack('C',hex($1))/eg;
return $val;
}
This part is...