我在 html 中有一个表单,当单击某些字段时,我希望它添加 php 部分中的值,所以我认为如果我将 php 部分放在 html 的值区域中,那么它会添加它,但它会在单击时将它们全部添加,但不会添加特定的,请帮助:
<p>
<input type="checkbox" name="one" value= <?php $number = 2.39; ?>
<label for="one">Four 100-watt light bulbs for $2.39</label>
<p>
$total = $number + $numberone + $numbertwo + $numberthree;
echo "Total cost is " .$total;
echo $card;
?>
</form>