我有;
<form method="post" action="search.php">
<select name="country">
<option value="">Select Country</option>
<option value="Afghanistan">Afghanistan</option>
<option value="Albania">Albania</option>
</select>
</form>
然后在 search.php 中$country = $country
查询 MySQL 表中 %like% country 的列。
我想知道在有人选择国家后记住下拉选择的最简单方法是什么?