我正在使用我的網站的PayPal支付網關付款。PayPal返回與產品ID陣列
在這裏我要喜歡,我可以送產品編號那些我想要購買的清單功能。 成功付款後,我想這些所有的ID,以便我可以更新我的數據。 我無法使用IPN,因爲它已經用於其他網站。
下面是我的貝寶的HTML表單..
<form action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" value="[email protected]">
<input type="hidden" name="item_name" value="PAYMENT REASON">
<input type="hidden" name="amount" value="10">
<input type="hidden" name="quantity" value="1">
<input type="hidden" name="no_shipping" value="0">
<input type="hidden" name="no_note" value="1">
<input type="hidden" name="currency_code" value="USD">
<input type="hidden" name="lc" value="MX">
<input type="hidden" name="bn" value="PP-BuyNowBF">
<input type="hidden" name="notify_url" value="http://localhost/paypal/notify.php">
<input type="hidden" name="return" value="http://localhost/paypal/success.php">
<input type="hidden" name="rm" value="2">
<input type="hidden" name="cbt" value="Return to The Store">
<input type="hidden" name="cancel_return" value="http://localhost/paypal/fail.php">
<input type="image" src="https://www.paypal.com/en_US/i/btn/x-click-but6.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!">
<img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>
我success.php 但它返回空數組寫了下面的代碼。即使我沒有得到交易ID。
請幫我實現這一點。謝謝
我不認爲你可以使用http:// localhost /。 您必須將其上傳到服務器並嘗試。 –
它在localhost的工作正常。 Internet連接在我的系統上。唯一的問題是獲取發佈數據。 –