我的网站上有这段代码:
<form method="post" action="process.php">
<input type="hidden" name="itemname" value="1" />
<input type="hidden" name="itemnumber" value="2" />
<input type="hidden" name="itemQty" value="1" />
<input type="hidden" name="itemprice" value="17">
</form>
此代码向 process.php 发送一个 POST,它会打开一个 paypal 类来进行付款。
一切都很好,但我有一个很大的麻烦。关键是,如果我使用 FireBug 编辑任何值,例如“itemprice”,任何人都可以更改默认值,并在处理付款时将 itemprice 替换为任何其他数量。
我该如何解决这个问题?有任何想法吗?
谢谢。