Я пытаюсь подсчитать стоимость выбранных флажков.Я получаю отдельные значения, но не могу понять, как их суммировать.
<?php
$q1= isset($_POST["question1"])
? implode(',', $_POST["question1"])
: 'no selection made';
?>
Вот мои флажки:
<label>
<input type="checkbox" name="question1[]" value="0" id="question1_0" />
Not Applicable</label>
<br />
<label>
<input type="checkbox" name="question1[]" value="7.69" id="question1_1" />
Tells the truth.</label>
<br />
<label>
<input type="checkbox" name="question1[]" value="7.69" id="question1_2" />
Shows respect for others.</label>
<br />
<label>
<input type="checkbox" name="question1[]" value="7.69" id="question1_3" />
Is straight forward- does not have a "hidden agenda."</label>
<br />
<label>