gpt4 book ai didi

php - 从特定 mysql 表列检索数据值并在 php 中打印

转载 作者:行者123 更新时间:2023-11-29 13:34:31 24 4
gpt4 key购买 nike

我试图从列 country_name 和表 ban_country_ip 中检索所有值,并在打印它们后:

<?php
include("config.inc.php");
$countryiso = mysql_query("SELECT distinct(country_name) as country_name FROM ban_country_ip");
while ($row = mysql_fetch_assoc($countryiso)) {
echo $row['country_name'];
}

最佳答案

Distinct不是mysql中的函数,请使用以下查询代替

"SELECT distinct country_name FROM ban_country_ip"

关于php - 从特定 mysql 表列检索数据值并在 php 中打印,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18931653/

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