php - Retrieve all the details along with transaction id using PayPal button -
i new paypal. want integrate paypal website. trying use paypal button. after payment success redirect page , able retrieve transaction id , amount. need more info regarding transaction.
could please me out solve problem?
i've written code in success page:
<?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. transaction id $item_transaction</h3>";} else{ $content="<h3> payment has been cancelled</h3>"; } print_r($content); ?> with code able retrieve transaction id unable retrieve first name, last name, email etc..
can me out resolve problem? in advance.
Comments
Post a Comment