我发送到贝宝的数据是
"https://www.paypal.com/cgi-bin/webscr/cmd=_cart&upload=1&business=seller.email@something.com¤cy_code=USD&bn=BusinessName&return=http://www.sellersite.com&item_number_1=55&item_name_1=battery&amount_1=55&quantity_1=2&item_number_2=52&item_name_2=bat&amount_2=5&quantity_2=3"
付款成功后,我想在“http://www.sellersite.com”上向买家显示那些发送的数据(商品编号、商品名称、金额、数量)和贝宝交易 ID。(假设卖家有paypal的商家账户,他会从网站的管理部分将该paypal id输入数据库。所以,我不会考虑他的paypal账户设置,我的工作只是为paypal支付创建环境给卖家。)
如果我写一个脚本
$T_ID=$_REQUEST['tx']; // or $T_ID=$_GET['tx']; **ref(tx):- "https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&content_ID=developer/howto_html_paymentdatatransfer"
$item=$_REQUEST['item_number_1']; // or $item=$_GET['item_number_1'];
那么我会从贝宝获得这些数据吗?
请告诉我。
-谢谢。