我正在尝试在用户回答多个问题的情况下创建一个测验。
我使用无线电提出了每个问题,我正在尝试检查该收音机是否已检查。如果未检查收音机,则显示错误。我主要让那部分工作。
我的问题是说问题1是否有一个已检查的收音机,并且没有回答问题2,当用户命中提交时,他们为问题1提交的答案就消失了。
我想保留他们检查的答案,例如粘性形式,仅在问题上显示错误,在这种情况下,问题2,他们没有回答。以下是我尝试解决它的两种不同的方式,我似乎无法完成它。
这就是我用php显示问题的方式。
<tr>
<td> If a and b are negative numbers, and |a| < |b|, then b - a is negative. </td>
<td> <?php echo ($err['q[1]']? "<span style='color:red'>*".$err['q[1]']."</span><br>": "");?>
<input type="radio" name="q[1]" id="q[1]t" value="T" <?php if (isset($_POST['q[1]']) and $_POST['q[1]'] == 'T') { echo 'checked'; } ?> > TRUE
<input type="radio" name="q[1]" id="q[1]f" value="F" <?php if (isset($_POST['q[1]']) and $_POST['q[1]'] == 'F') echo 'checked'; ?> > FALSE
</td>
</tr>
<tr>
<td> The equation 2x + 7 = 2(x + 5) has one solution. </td>
<td> <?php echo ($err['q[2]']? "<span style='color:red'>*".$err['q[2]']."</span><br>": "");?>
<input type="radio" name="q[2]" id="q[2]t" value="T" <?php if (isset($_POST['q[2]']) and $_POST['q[2]'] == 'T') echo 'checked'; ?> > TRUE
<input type="radio" name="q[2]" id="q[2]f" value="F" <?php if (isset($_POST['q[2]']) and $_POST['q[2]'] == 'F') echo 'checked'; ?> > FALSE
</td>
</tr>
这就是我试图验证它的方式。
if (isset($_POST) && !empty($_POST)) {
if (isset($_POST['q[1]'])) {
$radio_input = $_POST['q[1]'];
echo $radio_input;
$error=false;
} else {
$err['q[1]']= "Please Select An Answer";
$error=true;
}
if (empty($_POST['q[2]'])) {
$err['q[2]']= "Please Select An Answer";
$error=true;
} else {
$error=false;
}
使用数组符号[]
提交带有输入的表单时,它们将在$_POST
中以数组的形式返回。您将使用例如$_POST['q'][1]
。
只记住$err['q[1]'] !== $err['q'][1]
<?php
$err = array();
// check if form was submitted with POST
if ($_SERVER['REQUEST_METHOD'] === 'POST') {
// simplified
for ($i = 1; $i <= 2; $i++) {
// check if no answer was selected
if (empty($_POST['q'][$i])) {
$err["q[$i]"] = "Please Select An Answer";
}
}
}
?>
<form action="" method="post">
<table>
<tr>
<td> If a and b are negative numbers, and |a| < |b|, then b - a is negative.</td>
<td>
<?php if (isset($err['q[1]'])) : ?>
<span style="color: red">* <?= $err['q[1]'] ?></span><br>
<?php endif ?>
<input type="radio" name="q[1]" id="q[1]t" value="T" <?= isset($_POST['q'][1]) && $_POST['q'][1] == 'T' ? 'checked' : '' ?>> TRUE
<input type="radio" name="q[1]" id="q[1]f" value="F" <?= isset($_POST['q'][1]) && $_POST['q'][1] == 'F' ? 'checked' : '' ?>> FALSE
</td>
</tr>
<tr>
<td> The equation 2x + 7 = 2(x + 5) has one solution. </td>
<td>
<?php if (isset($err['q[2]'])) : ?>
<span style="color: red">* <?= $err['q[2]'] ?></span><br>
<?php endif ?>
<input type="radio" name="q[2]" id="q[2]t" value="T" <?= isset($_POST['q'][2]) && $_POST['q'][2] == 'T' ? 'checked' : '' ?>> TRUE
<input type="radio" name="q[2]" id="q[2]f" value="F" <?= isset($_POST['q'][2]) && $_POST['q'][2] == 'F' ? 'checked' : '' ?>> FALSE
</td>
</tr>
<tr>
<td></td>
<td><input type="submit" value="Check"></td>
</tr>
</table>
</form>