gpt4 book ai didi

php - MySQL 错误 : "mysql_fetch_assoc() expects parameter 1 to be resource"

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

<分区>

Possible Duplicate:
PHP Error: mysql_fetch_array() expects parameter 1 to be resource, boolean given

我收到以下错误:

警告:mysql_fetch_assoc() 期望参数 1 为资源

我的查询似乎没问题,这是我的代码:

function products()
{
$query = "SELECT id, quantity, price FROM dvd WHERE quantity > 0";
if (!$query)
{
echo "no product found";
die(mysql_error());
}
else
{
while ($query_row = mysql_fetch_assoc($query)){
echo "Test";
}
}
}

这个错误是什么意思?

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