0

嗨,我是 php 和 mysql 的新手。我正在尝试 2 构建一个在线查询运行器并刚刚启动它。我收到此错误: Warning: mysql_fetch_row() expects parameter 1 to be resource, boolean given in F:\wamp\www\chapter 3\ex-01\scripts\run_query.php on line 15

这是我的代码:

<?php

 require 'sqlconnect.php';

 $query_text = $_REQUEST['query'];
 $result = mysql_query($query_text); 

 if (!$result) {
 die("<p>Error in executing the SQL query " . $query_text . ": " .
 mysql_error() . "</p>");
 }
 echo "<p>Results from your query:</p>";
 echo "<ul>";
 while ($row=mysql_fetch_row($result)) {
 echo "<li>{$row[0]}</li>";
 }
 echo "</ul>";
?>

点是简单的查询,如“显示数据库”成功运行。

4

1 回答 1

0

看来你的mysql_query回报false是布尔值,试试

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

接着

if ($result) {
// do you code
} 
于 2013-07-08T06:24:59.773 回答