<form action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="post">
<!-- Identify your business so that you can collect the payments. -->
<input type="hidden" name="business" value="xxxxxxxxxxx@gmail.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="<?php echo $pro_title;?>">
<input type="hidden" name="amount" value="<?php require('inc/shipcalc.php');?>">
<input type="hidden" name="currency_code" value="USD">
<!-- success transaction and failed transaction url -->
<input type="hidden" name="return" value="http://httpwwwsachinsinghxyz.000webhostapp.com/su-pay.php" />
<input type="hidden" name="cancel_return" value="http://httpwwwsachinsinghxyz.000webhostapp.com/fa-pay.php" />
<!-- Display the payment button. -->
<input type="image" name="submit" border="0"
src="images/paypal.jpg"
alt="Buy Now">
<img alt="" border="0" width="1" height="1"
src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" >
</form>
这是我的贝宝交易表。我的交易正常工作。我想知道的是如何从PayPal获取Customer_ID或Customer_name。因此,我可以在Payapl交易后邮寄发票详细信息。我是否应该将表单数据中的客户ID变量发送到PayPal。如果是这样,我该如何通过PayPal将该ID返回我的网站。建议我可能的方式
如果我从贝宝(PayPal)正确理解它,它们实际上没有"客户ID"更像是一个交易ID,然后主要在您从商店获得另一封电子邮件或
例如,如果您以此为例:https://www.codexworld.com/paypal-standard-payment-gateway-integration-php/他们如何使用交易ID对其进行排序,则可以将其引导到方向上。<<<<<<<<<<<<<<<<
同样,通常以贝宝(PayPal)付款方式处理的方式通常包含交易ID,但填写信息的客户名称。
例如乔恩·多伊(Jon Doe)想在您的商店购买,但要与其他贝宝(Paypal)付款,例如他的母亲。
因此,在电子邮件中,乔恩(Jon
希望这对以某种方式有所帮助。
您可以使用带有名称custom
的隐藏字段,而PayPal将返回您通过它传递的值,如
<input type="hidden" name="custom" value="YOUR customerId VALUE"/>
处理返回值时,返回值使用 custom
来恢复您传递的值。