gpt4 book ai didi

php - 如何显示表格中的每个数据

转载 作者:行者123 更新时间:2023-11-29 11:53:53 25 4
gpt4 key购买 nike

我想在我的 PHP 页面中显示表格,我的代码是:

$query = "SELECT username FROM users_registration"; 
$result = pg_query($conn,$query);

$i=0;
while($row = pg_fetch_array($result))
{
$vm_array[$row[0]]=$row[0];
$i++;
}

username 表中的值为:

 David amitra a David emilio Atul john rohit john

但我的页面只显示:

 David amitra a emilio Atul john rohit

如何显示所有缺失的数据,例如大卫, 约翰?

最佳答案

$vm_array[$row[0]]=$row[0]; 会覆盖 $row[0] 的值,例如、'David' 和 'john',因为您使用的是实际值作为哈希键。因此,您不能在“数组”中多次拥有一个值。请尝试使用 $vm_array[] = $row[0];$vm_array[$i] = $row[0];。但是我知道你没有哈希。这只是为了显示差异。

关于php - 如何显示表格中的每个数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7253531/

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