in reply to Re^2: hidden variables with encType="multipart/form-data"
in thread hidden variables with encType="multipart/form-data"

Really? Looks like you've updated line 127 to #    my $req = new CGI; :)

print"<hr>$URL<br>$Half_Credit_Limit<br>$req->param('URL')<hr>";
won't call method param, string interpolation doesn't work like that. Try
print "<hr>", $req->Dump, "<hr>";