作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
如何从下面的列表菜单中排除一些国家?现在我的代码将列出数据库中的所有国家/地区名称。
示例 我想从列表菜单中排除阿尔巴尼亚国家。如何根据这些代码实现。
代码
<?php $select_country=mysql_query("SELECT * FROM tbl_country ORDER BY country_name ASC")?>
<select name="country" onchange="return get_country(this.value);">
<option value=""><?=SELECT_COUNTRY?></option>
<? while($country=mysql_fetch_array($select_country)) {?>
<option <? if($_SESSION['getcountry']==$country['id']){ ?> selected="selected"<? }?> value="<?=$country['id']?>">
<?=$country['country_name']?></option>
<? } ?>
</select>
数据库
id country_name
1 Afghanistan
2 Aland Islands
3 Albania
4 Algeria
5 American Samoa
6 Andorra
最佳答案
从结果集中排除该行:
SELECT * FROM tbl_country WHERE country_name != "Albania" ORDER BY country_name ASC
或者你用 PHP 跳过它:
<?php
while($country=mysql_fetch_array($select_country)) {
if ($country['country_name'] == 'Albania') {
continue;
} ?>
<option <?php if($_SESSION['getcountry']==$country['id']){ ?> selected="selected"<? }?> value="<?=$country['id']?>"><?=$country['country_name']?></option>
<?php } ?>
关于Php - 如何从 mysql 中排除数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1248641/
我是一名优秀的程序员,十分优秀!