我正在尝试根据学期(秋季,春季和两者)排序课程 PHP:
<td width="200" bgcolor="#DCDCDC" <strong>Semester Available</strong>
<select name="selectSemester" id="selectSemester">
<option>Sort Semester</option>
<option value="0">Fall</option>
<option value="1">Spring</option>
<option value="2">Both</option>
</select>
</td>
SQL:
if($_POST['selectSemester'] != 0)
{
$selectSemester=$_POST['selectSemester'];
}
答案 0 :(得分:1)
目前尚不清楚你究竟想做什么。 如果您通过SQL查询获得课程,则可以使用
ORDER BY semester
或者如果你真的想按学期过滤,你可以使用
WHERE semester = $_POST['selectSemester']