为了账号安全,请及时绑定邮箱和手机立即绑定

警告:mysqli_ERROR()需要精确的一个参数,0给定的错误

警告:mysqli_ERROR()需要精确的一个参数,0给定的错误

慕的地6264312 2019-07-03 10:26:38
警告:mysqli_ERROR()需要精确的一个参数,0给定的错误我正在学习一个教程,但是本教程的作者不回答问题-但这是我的查询我得到了以下错误警告:mysqli_error()需要精确的1参数,0给定,问题在于这一行代码-$query = mysqli_query($myConnection, $sqlCommand) or die (mysqli_error());整个代码是session_start();require_once "scripts/connect_to_mysql2.php"; //Build Main Navigation menu and gather page data here$sqlCommand = "SELECT id, linklabel FROM pages ORDER BY pageorder ASC"; $query = mysqli_query($myConnection, $sqlCommand) or die (mysqli_error()); $menuDisplay = '';while ($row = mysqli_fetch_array($query)) {      $pid = $row["id"];     $linklabel = $row["linklabel"];     $menuDisplay .= '<a href="index.php?pid=' . $pid . '">' . $linklabel . '</a><br />';} mysqli_free_result($query);所包含的文件有以下行$myConnection = mysqli_connect("$db_host","$db_username","$db_pass","$db_name") or die ("could not connect to mysql");  with reference to $myConnection, why do I get this error?谢谢
查看完整描述

3 回答

?
眼眸繁星

TA贡献1873条经验 获得超9个赞

mysqli_error功能要求$myConnection作为参数,这就是为什么您会收到警告


查看完整回答
反对 回复 2019-07-03
?
慕标琳琳

TA贡献1830条经验 获得超9个赞

首先,问题在于您没有为mysqli_Error设置任何参数。我可以看到,这个问题已经根据这里的帖子解决了。最有可能的是,下一个问题是所包含的文件路径错误。..

你确定这段代码

$myConnection = mysqli_connect("$db_host","$db_username","$db_pass","$db_name") or die ("could not connect to mysql");

是否在“脚本”文件夹中,并且您的主代码文件与脚本文件夹的级别相同?


查看完整回答
反对 回复 2019-07-03
  • 3 回答
  • 0 关注
  • 724 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信