我目前有一个直接发送到 2Checkout 的自定义购物车,并且需要对不同的付款方式使用相同的表单。
为此,我需要先将表单提交到我自己的服务器,然后将服务器重定向到所选的支付网关或我网站上详细说明其他支付选项的页面。
我将如何使用变量作为 PHP(不是 javascript)中的 post 方法重定向用户?
我当前的代码不起作用,因为用户没有离开页面,他们需要......
//$url = 'https://www.2checkout.com/checkout/spurchase';
$url = 'getpost.php';
//url-ify the data for the POST
foreach($fields as $key=>$value) { $fields_string .= $key.'='.$value.'&'; }
rtrim($fields_string, '&');
//open connection
$ch = curl_init();
//set the url, number of POST vars, POST data
curl_setopt($ch,CURLOPT_URL, $url);
curl_setopt($ch,CURLOPT_POST, count($fields));
curl_setopt($ch,CURLOPT_POSTFIELDS, $fields_string);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION ,1);
curl_setopt($ch, CURLOPT_HEADER ,0); // DO NOT RETURN HTTP HEADERS
curl_setopt($ch, CURLOPT_RETURNTRANSFER , 1); // RETURN THE CONTENTS OF THE CALL
//execute post
$result = curl_exec($ch);
//close connection
curl_close($ch);