我正在實施貝寶付款到我的網站。但是有一些隱藏的表單元素,例如價格和我們可以輕鬆操作的這些元素。我怎樣才能將它們完美地隱藏在PHP中,例如沒有人可以操縱這個值?貝寶實施:隱藏元素到PHP
<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 Example 1">
<input type="hidden" name="item_number" value="1">
<input type="hidden" name="amount" value="5.95">
<input type="hidden" name="currency_code" value="USD">
<input type='hidden' name='cancel_return' value='http://example.com/cancel.php'>
<input type='hidden' name='return' value='http://example.com/success.php'>
<input type="image" name="submit" border="0"
src="https://www.paypalobjects.com/en_US/i/btn/btn_buynow_LG.gif" alt="PayPal - The safer, easier way to pay online">
<img alt="" border="0" width="1" height="1" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" >
</form>
隱藏要素item_name
,item_number
,amount
和currency_code
我不希望看到他們。有沒有機會用PHP或以某種方式隱藏它們?
非常感謝!
將會話中的信息保存在您的服務器上,並在價值發生變化時取消訂單,或者使用HMAC簽署訂單並將其傳遞給PayPal,並在通過PayPal後將其檢查 –