您好,我在 PHP 中有以下脚本:
$correct = array("a", "a", "a", "a");
$totalValue = "First Name: " . $fname . "\n";
$totalValue .= "About Our Mission | Question 01: " . $S1Q1 . " " . (compare $correct[0] with $S1Q1 choice) ? "Correct" : "Wrong" . "\n";
$S1Q1 是我使用单选按钮从表单中接受的变量:
<input type="radio" name="S1Q1" value="a" /> True
<input type="radio" name="S1Q1" value="b" /> False
(比较 $correct[0] 和 $S1Q1 选项)?“正确”:“错误” <我如何在 php 代码中实现它。
对于下一个电台选择,我会比较$correct[1] 和 $S1Q2 ...等等。