我目前正在处理我的PHP项目。在我的项目中,我有4个单选按钮用于选择方法。四个单选按钮具有不同的值。我的问题是,我认为我对onclick函数感到困惑。我不知道应该叫什么功能。
<input name="rmr" id="rmr" type="radio" value="4" onclick="">
<input name="rmr" id="rmr" type="radio" value="8" onclick="">
<input name="rmr" id="rmr" type="radio" value="12" onclick="">
例如,如果客户选择3添加购物车,总金额值为22磅,那么客户选择该单选按钮如果客户选择第二种方法(收音机)按钮意味着该值也会添加添加购物车并显示总金额像30磅。 抱歉,那些代码上面的代码有html标签的问题。
有人可以帮忙吗?
答案 0 :(得分:0)
<form action="radio.php" method="post">
<input name="rmr" id="rmr" type="radio" value="4" />value 4
<input name="rmr" id="rmr" type="radio" value="8" />value 8
<input name="rmr" id="rmr" type="radio" value="12" />value 12
</form>
<?php
If(isset($_POST['rmr'])) {
$addtocart = $_POST['rmr'];// you will get the radio button value here, if value 4 is selected then the $addtocart value will be 4.
If you want to call a function call it here or you can pass this value to cart.
}
?>