下面的下拉菜单显示了选项,其中每个选项的值是来自数据库的StudentId
:
<select name="student" id="studentsDrop">
<?php
while ( $currentstudentstmt->fetch() ) {
$stu = $dbStudentId;
if(isset($_POST["student"]) && $stu == $_POST["student"])
echo "<option selected='selected' value='$stu'>" . $dbStudentAlias . " - " . $dbStudentForename . " " . $dbStudentSurname . "</option>" . PHP_EOL;
else
echo "<option value='$stu'>" . $dbStudentAlias . " - " . $dbStudentForename . " " . $dbStudentSurname . "</option>" . PHP_EOL;
}
?>
</select>
但我的问题是如何显示All
选项,如果用户选择此选项,则此选项的值将适用于所有学生ID。
生成学生值的代码在这里:
答案 0 :(得分:0)
自己把它放在那里:
echo "<option>All</option>";
while ( $currentstudentstmt->fetch() ) {
您可以执行相同的_POST['student']
检查,看看是否也选择了All
。
答案 1 :(得分:0)
在大多数情况下,您会使用特殊值(“ALL”或“”或类似的东西)来表示已请求所有ID