作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在我的 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/13002362/
我是一名优秀的程序员,十分优秀!