Hi, I’m posting a form using curl:
<?php
//create the final string to be posted using implode()
$post_str = implode ('&', $post_items);
//Initialize cURL and connect to the remote URL
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://leads..html' );
//Instruct cURL to do a regular HTTP POST
curl_setopt($ch, CURLOPT_POST, TRUE);
//Specify the data which is to be posted
curl_setopt($ch, CURLOPT_POSTFIELDS, $post_str);
//Tell curl_exec to return the response output as a string
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
//Follow 302 redirect
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
// Timeout in seconds
curl_setopt($ch, CURLOPT_TIMEOUT, 30);
//verify https
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
//Execute the cURL session
$response = curl_exec($ch );
//Close cURL session and file
curl_close($ch);
echo $response;
$resp = explode("\
\\r\
", $response);
$header = explode("\
", $resp[0]);
echo "<pre>";
print_r($header);
echo "</pre>";
?>
The response is:
success: https://www-somesite.html
or
Array
(
[0] => success: https://www-somesite.html
)
My question is how to get the returned URL and redirect the user to it?
Probably easy but seems to be beyond my very limited php knowledge.
Thanks.