我想要一些帮助。首先,我很抱歉这个头衔,我不知道该放什么。
图片中的那些2被支持为将值传输到我的php页面的按钮。 目前我在php文件中使用链接和$ _GET的参数。然而,它回应但它不会保留,直到提交php页面并且没有输入到数据库,当使用$ _POST之前,它没有任何问题。顺便说一句,我正在使用单选按钮。但我决定改变它。
在用户按2个单选按钮获取值之前,现在我需要它才能工作,这样用户只需按一个图像并提交2个值即运营商和付款。
例如,用户按下了LBC图片(或假设的按钮),页面将通过$ _POST将carrier = LBC和payment = BPI传递到下一页。
现在是我的代码。
<table width="500" cellpadding="3" cellspacing="0">
<tr>
<td><a href="billing.php?carrier=LBC&payment=BPI"><center><img src="../paymentoptions/lbc.png" alt="LBC" class="picture" width="300px"/></a></td>
<td></td>
<td><a href="billing.php?carrier=PickUp&payment=PickUp"><center><img src="../paymentoptions/pickup.jpg" alt="Pick-Up" class="picture" width="300px"/></a></td>
</tr>
<tr>
<td><a href="billing.php?carrier=LBC&payment=BPI"><p>The Shipping takes 1-2 days for NCR and 2-3 days for any provincial. Payment method only available is through BPI Bank Deposit<p>
<div id='price'> Additional ₱250 </div></a></td>
<td></td>
<td><a href="billing.php?carrier=PickUp&payment=PickUp"><p>Personally pick up your merchandise at our office. Free of Charge. Office hours: 10:00 am to 5:00 pm<p>
<div id='price'> Free!! </div></a></td>
</table>
网址参数中的值由$_GET
在下一页中获取。
现在我需要使用$_POST
并在按下图像或文本框时传输2个值。
我希望我能够很好地解释它,让你明白。谢谢,非常感谢您的帮助。