嗨,我是 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>";
?>
点是简单的查询,如“显示数据库”成功运行。