i have a form, which upon submission needs to refresh the page with a new url.
the new url however needs to come from the output of a curl function.
at the moment, I can get the curl function to operate correctly, but instead of refreshing the page with that url, it is just printing the url on the page.
have you any idea how i could use that url to refresh the page with?
thanks in advance
EDIT:
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://uk.ImpulsePay.com/payforit?RouteID=5432&URL=Y");
curl_setopt($ch, CURLOPT_HEADER, 0);
header( "Location: curl_exec($ch)");
curl_close($ch);
If you visit the link above - it will display a page which has a link in the body. I am assentially trying to get the link in the body of the page, and then refresh the page to that page.
Does that make sense?