如何从下面的列表菜单中排除某些国家/地区?现在我的代码将从数据库中列出所有国家/地区名称。

示例 我想从列表菜单中排除阿尔巴尼亚国家。如何根据这些代码实现它。

代码

    <?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>

mysql
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/

10-11 03:22