gpt4 book ai didi

php - 循环遍历 php 表不起作用 [给出警告 : mysql_fetch_assoc() expects parameter 1 to be resource, bool 值]

转载 作者:行者123 更新时间:2023-11-29 20:16:39 26 4
gpt4 key购买 nike

我在我的 index.php 页面上收到此错误,其中我还包含了代码

<?pho
require 'connect.php';
?>

警告:mysql_fetch_assoc() 期望参数 1 为资源,给定 bool 值

<?php
$sql = "SELECT * FROM 'menulinks'";

$result = mysql_query($sql);


while ($row = mysql_fetch_assoc($result)) {
echo '<li>', $row['linktitle'], '<li>';

}
?>

这是我的连接函数

<?php

$con = mysql_connect('localhost', 'root', '') or die('Sorry, we could not connect');
mysql_select_db('philipsnewsite', $con) or die('Sorry, we could not connect');

?>

最佳答案

您已经用单引号字符引用了表名,MySQL 将其解释为字符串文字。您应该使用反引号,或者根本不使用引号字符:

$sql = "SELECT * FROM `menulinks`";

此语法错误导致 mysql_query() 函数返回 false,您可以按如下方式测试:

$result = mysql_query($sql) or die(mysql_error());

另请注意,如 mysql_query() 手册页顶部的大红框中所述:

Suggested alternatives

Use of this extension is discouraged. Instead, the MySQLi or PDO_MySQL extension should be used. See also MySQL: choosing an API guide and related FAQ for more information. Alternatives to this function include:

关于php - 循环遍历 php 表不起作用 [给出警告 : mysql_fetch_assoc() expects parameter 1 to be resource, bool 值],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39728479/

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