gpt4 book ai didi

php - 将 MySQL 列存储到数组中,然后在 PHP 中打印

转载 作者:太空宇宙 更新时间:2023-11-03 10:35:17 25 4
gpt4 key购买 nike

我正在尝试将数据库中名为 images 的表中名为 imgPath 的列存储到 PHP 数组中。然后我想把它打印出来,这样我就可以看到它起作用了。您可以在下面看到表格的样子:

From the table **images**

下面是我用来不成功的代码,哈哈:

$db = mysqli_connect('localhost', 'userdatabase', 'PASSData', 'sftdatabase');
$result = mysqli_query($db,"SELECT imgPath FROM images");

$result_array = array();

while($row = mysql_fetch_assoc($result))
{
$result_array[] = $row['imgPath'];
}
print_r($result_array);

我在创建数组之前尝试使用 print_r($result);,我得到:

This

如何获取路径? (示例: img/art/10/download.jpg)

最佳答案

简单的错误,

改变,

while($row = mysql_fetch_assoc($result))

为了,

while($row = mysqli_fetch_assoc($result))

请注意 mysqlii 在第一个中丢失。

关于php - 将 MySQL 列存储到数组中,然后在 PHP 中打印,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49656272/

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