gpt4 book ai didi

php - 尝试创建 php 购物车时出现 "Warning: mysql_fetch_array() expects parameter 1 to be resource, boolean given"错误

转载 作者:搜寻专家 更新时间:2023-10-31 21:15:36 24 4
gpt4 key购买 nike

<分区>

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

这是我在 product.php 中的代码,每次我点击主页上的产品时,它都会出现以下警告:

if ( isset( $_GET['ID'] ) ) {
$product_id = $_GET['ID'];
$query = "SELECT Name, Genre, Price, Year, Picture FROM Products";
$result = mysql_query( $query );

while ( $row = mysql_fetch_array( $result, MYSQL_NUM ) ) {
echo "<div><p>Name: $row[0]</p><p>Genre: $row[1]</p><p>Price: $row[2]</p><p>Year: $row[3]</p></div>";
}
echo "<div><a href=\"cart.php?action=add&product=$product_id\">add to basket</a></div>";
}

然后我收到警告:

Warning: mysql_fetch_array() expects parameter 1 to be resource, boolean given in /Applications/XAMPP/xamppfiles/htdocs/cart/product.php on line 12

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