在我的网站上,我有一个页面来显示推荐。我编写了这段代码来显示我在数据库中的所有推荐。
到目前为止,这是我的代码:
while ( $row = mysqli_fetch_array( $r, MYSQLI_ASSOC)) {
$testimonial = $row['testimonial'];
//echo $testimonial;
$mytestimonial = nl2br($testimonial);
$city = $row['city_name'];
$name = $row['name'];
$url = $row['web_address'];
$imageName = $row['image_name'];
$type = $row['membership_type'];
}
使用此代码,我可以将我所有的推荐信带到该页面。它很适合我。我的问题是现在我需要根据其类型过滤我的推荐。我的数据库中有 3 种不同类型的推荐信。(导师,学院,学生)
我将使用一个选择框来过滤数据。从选择框中选择一个选项时,我需要根据所选类型显示推荐。
<div class="filter-box">
<div id="select_box">
<form method="post" action="">
<div class="variation2">
<label>Filter By</label>
<select class="select">
<option>Tutor</option>
<option>Institute</option>
<option>Student</option>
</select>
</div>
</form>
</div>
</div>
谁能让我朝着这里的方向前进?
谢谢你