gpt4 book ai didi

Php - 如何从 mysql 中排除数据

转载 作者:可可西里 更新时间:2023-11-01 07:48:37 24 4
gpt4 key购买 nike

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

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

代码

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

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com