このような多肢選択式クイズの質問があるphpページがあります
<p>1. Is Manhattan near New York?<br>
<input type="radio" name="ans1" value="3">
Yes<br>
<input type="radio" name="ans1" value="2">
Maybe<br>
<input type="radio" name="ans1" value="1">
No</p>
<p>2. Do you like Indian food?<br>
<input type="radio" name="ans2" value="1">
Some times<br>
<input type="radio" name="ans2" value="3">
Never<br>
<input type="radio" name="ans2" value="2">
Always</p>
ページはそれ自体に投稿し、このように答えが正しいか間違っているかを確認します
if($ans1 == "3") {
$test_complete .="Question one is <span class='green'>correct</span>, well done!<br/>";
}else{
$test_complete .="Question one is <span class='red'>incorrect</span>!<br/>";
}
// change the quest2 to the right answer
if($ans2 == "2") {
$test_complete .="Question two is <span class='green'>correct</span>, well done!<br/>";
}else{
$test_complete .="Question two is <span class='red'>incorrect</span>!<br/>";
}
ここで、1 つまたは 2 つの回答が正しいことをユーザーに伝える代わりに、正しい回答の数と間違った回答の数を計算し、それを 2 つのテーブル ボックスと合計質問数の 1 つのボックスに表示するカウンターを実行したいと思います。