如何使用存储在数据库字段中的值检查选定的单选按钮值?代码如下:
索引.php:
dfdfdffdfdfdfdf
问题.php
$_POST['answer'];
$totalCorrect = 0;
if ($_POST == 'CorrectAnswer') { $totalCorrect++;}
echo "$totalCorrect questions correct";
我想传递选择的答案以使用数据库检查它以查看它是否与 的值匹配CorrectAnswer
并相应地编辑分数。