選択したラジオ ボタンの値をデータベース フィールドに格納されている値と照合するにはどうすればよいですか? コードは以下のとおりです。
index.php:
dfdfdffdfdfdfdf
question.php
$_POST['answer'];
$totalCorrect = 0;
if ($_POST == 'CorrectAnswer') { $totalCorrect++;}
echo "$totalCorrect questions correct";
選択した回答をデータベースに渡して、値と一致するかどうかを確認し、それにCorrectAnswer
応じてスコアを編集したいと考えています。