in reply to Re: Re: Hiding passed values in url
in thread Hiding passed values in url

You are throwing away the result of the request. You should do something like:
$result=$ua->request(POST 'http:.... if ($result->is_success) { # Everything OK print $result->content; # send everything to the user } else { # There was an error in the CF script die "or do something equaly drastic"; }