gpt4 book ai didi

php - 从 PHP 中的选择选项中删除重复值

转载 作者:行者123 更新时间:2023-11-29 19:44:54 24 4
gpt4 key购买 nike

这是代码,我只想从 mysql 数据库回显 1 个城市!

<?php


include('db.php');

$queryss = mysqli_query($conn, 'SELECT * FROM areas');

while ($rowx = mysqli_fetch_array($queryss)) {


echo "{pro:'$rowx[1]',city:'$rowx[2]', dist:'$rowx[3]', town:'$rowx[4]', area:'$rowx[5]',subarea:'$rowx[6]',ucname:'$rowx[7]'},";

}

?>

我正在这里获取此输入! 3 次卡拉奇在我的 html 中,但我只想要这个城市的 1 个。 SELECT DISTINCT 在 mysql 中工作,但我如何在 PHP 中使用它?

enter image description here

最佳答案

您的查询应该是

SELECT * FROM areas GROUP BY id

我已经测试过了。

关于php - 从 PHP 中的选择选项中删除重复值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41085359/

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