成功支付宝贝后,无法重定向商家网站

时间:2013-10-09 11:55:54

标签: php paypal payment-gateway paypal-sandbox paypal-ipn

我使用paypal沙盒测试买家和卖家帐户。使用这些卖家帐户来集成paypal支付网关。 付款成功后,它应自动重定向到成功页面。 这是使用

的代码
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<form name='_xclick' target='_parent' action='https://www.sandbox.paypal.com/webscr' method='post'>


        <input type="hidden" name="cmd" value="_xclick">
        <input type="hidden" name="business" value="xxxxxxxxxxxxx-faxxxx@gmail.com">
        <input type="hidden" name="currency_code" value="USD">
        <input type="hidden" name="item_name" value="Invoice payment">
        <input type="hidden" name="return" value="http://www.mysite.com/success.php/">


                   <input type="hidden" name="amount" value="12">

   <input type='subimit' name='submit' value='pay by paypal'>
    </form>  

我也在paypal卖家设置中打开了网站付款的自动退货。如何将事务id传递给success.php。什么代码应该写在success.php页面...并且如果事务是suucessfull我必须更新数据库中的金额,否则故障数量应该在数据库中更新...任何人都可以帮助我。

1 个答案:

答案 0 :(得分:0)

在成功页面上,您只需获取数据

$item_transaction = $_GET['tx']; // Paypal transaction ID
$item_price = $_GET['amt']; // Paypal received amount
$item_currency = $_GET['cc']; // Paypal received currency type