我对Paypal很新。我想将Paypal与我的网站集成。我正在尝试使用Paypal按钮。付款成功后,我成功重定向到我的页面,我能够检索到交易id
和amount
。但我需要更多关于交易的信息。
你能帮我解决这个问题吗?
我在成功页面中写了一些代码:
<?php
$item_no = $_REQUEST['item_number'];
$item_transaction = $_REQUEST['tx'];
$item_price = $_REQUEST['amt'];
$item_currency = $_REQUEST['cc'];
if($item_price=price && item_currency=currency){
$content = "<h1>Welcome, Guest</h1>";
$content .= "<h3>Your payment has been proceeded successfully. Your
transaction id is $item_transaction</h3>";}
else{
$content="<h3> your payment has been cancelled</h3>";
}
print_r($content);
?>
使用此代码,我可以检索事务id
,但我无法检索First name
,Last name
,Email
等。
任何人都可以帮我解决这个问题吗? 在此先感谢。