我有兩個文件的index.php和success.php這樣的:爲什麼PayPal會重定向到無查詢字符串的頁面?
的index.php包含:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Paypal test</title>
</head>
<body>
<form action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="business" value="[email protected]">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="item_name" value="item">
<input type="hidden" name="amount" value="1">
<input type="hidden" name="currency_code" value="USD">
<input type="hidden" name="return" value="http://localhost/paypal/success.php">
<button type="submit">pay now</button>
</form>
</body>
</html>
和success.php包含:
<?php print_r($_POST); ?>
當我點擊「pay now」按鈕時,它會轉到PayPa l,但交易成功後,重定向沒有查詢字符串像這樣success.php:
爲什麼會出現在返回頁面中沒有查詢字符串?
我解決後測試:我登錄到我的沙箱帳戶 - >配置文件 - >我的銷售工具 - >網站首選項(更新) - >返回URL並設置我的返回頁面url。在此之後,它的工作將 – zuhair