我有一個帶分組單選按鈕的html表單。這種形式包含有任何疑問或任何選項用PHP計算html單選按鈕值
<form action="results.php" method="post" enctype="multipart/form-data"><br>
<p>Have you ever turned a client down?</p>
<div id="q_1">
<input type="radio" name="q[]" id="q_1_yes" value="yes">
<label for="q_1_yes">Yes</label>
<input type="radio" name="q[]" id="q_1_no" value="no">
<label for="q_1_no">No</label>
</div><br>
<p>Are you comfortable with failure?</p>
<div id="q_1">
<input type="radio" name="q[]" id="q_2_yes" value="yes">
<label for="q_2_yes">Yes</label>
<input type="radio" name="q[]" id="q_2_no" value="no">
<label for="q_2_no">No</label>
</div><br>
<p>Can your concept be easily described and understood?</p>
<div id="q_1">
<input type="radio" name="q[]" id="q_3_yes" value="yes">
<label for="q_3_yes">Yes</label>
<input type="radio" name="q[]" id="q_3_no" value="no">
<label for="q_3_no">No</label>
</div><br>
<input type="submit" name="sub_eit" id="sub_eit" value="Submit">
</div>
</form>
我知道我可以指望的單選按鈕的數量與名稱q
$count_cbox = count($_POST['q'])
但有可能的是,當用戶進行選擇,我算單選按鈕值=「是」或「否」。
遍歷'$ _POST'並計算髮現'yes'的頻率,然後使用'switch(yesCount){case 1:/ *任何代碼*/break;情況2:/ *任何代碼*/break;}' –
您可以使用某些count變量或將結果存儲在數組中。 –
順便說一句'推薦'而不是'推薦' –