<form id="dvrr" action="https://www.paypal.com/cgi-bin/webscr" method="post">
<table border="0" cellpadding="5" cellspacing="5" align="center" width="100%">
<tr>
<td></td>
<td><input type="hidden" name="business" value="ceo@world-airport-city-transfer.com">
<!-- Specify a Buy Now button. -->
<input type="hidden" name="cmd" value="_xclick">
<!-- Specify details about the item that buyers will purchase. -->
<input type="hidden" name="item_name" value="Cab Booking">
<input type="hidden" name="item_number" value="<?php echo $orderid; ?>">
<input type="hidden" name="amount" value="<?php echo number_format((float)$data['price'], 2, '.', ''); ?>">
<input type="hidden" name="currency_code" value="USD">
<!-- Specify URLs -->
<input type="hidden" name="cancel_return" value="http://www.wer.com/payment-cancel/">
<input type="hidden" name="return" value="http://www.wer.com/payment-processing/">
<input type="hidden" name="notify_url" value="http://www.wer.com/notify-payment/">
<!-- Display the payment button. -->
<input type="image" name="submit" border="0" src="https://www.paypalobjects.com/en_US/i/btn/btn_buynow_LG.gif" alt="PayPal - The safer, easier way to pay online">
<img alt="" border="0" width="1" height="1" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" ></td>
</tr>
</table>
这是我用于付款的PayPal表单,感谢您在页面上添加代码以获取响应并在我们的系统上更新交易完成与否。
我们将此代码放在weburl.com/payment-processing/上,即我们的返回网址
$数据= $ _ POST;
if($_POST['payment_status']!=''){
$item_name=$_POST['item_name'];
$item_number=$_POST['item_number'];
$txn_id=$_POST['txn_id'];
$payer_email=$_POST['payer_email'];
$payment_gross=$_POST['payment_gross'];
$payment_status=$_POST['payment_status'];
$insert = mysql_query("INSERT INTO cr_payments(item_name,item_number,txn_id,payer_email,payment_gross,payment_status) VALUES('".$item_name."','".$item_number."','".$txn_id."','".$payer_email."','".$payment_gross."','".$payment_status."')") or die(mysql_error());
global $wpdb;
$is_added = $wpdb->query("UPDATE cr_booking SET fld_booking_status = '$payment_status' WHERE fld_booking_id = '$item_number'");
但是我们在沙箱模式下运行代码时会得到数据..但在实时模式下我们得到空白数组
答案 0 :(得分:0)
PayPal网站付款标准,包括您使用的PayPal按钮,不会将任何内容带回您的返回网址。
在跳转到PayPal付款页面之前,您必须将数据存储在购物车中。
您可以使用的另一种PayPal产品,与您使用的产品非常不同,是快速结账。它要求您对服务器和PayPal之间的API调用进行编程,但实际收费是通过在服务器上调用doexoresscheckout完成的,因此您可以根据此API调用的结果决定要显示的内容。
答案 1 :(得分:0)
我通过自定义方式解决问题我只是通过file_put_content在文件上写入ipn数据并将文件数据转换为数组,然后通过&amp;并且=我在此基础上得到了确切的数据,我们处理了我们网站上的付款数据