Home  >  Article  >  Backend Development  >  Warning: mysql_fetch_row(): supplied argument is not a valid MySQL result resour,该怎么解决

Warning: mysql_fetch_row(): supplied argument is not a valid MySQL result resour,该怎么解决

WBOY
WBOYOriginal
2016-06-13 10:48:091266browse

Warning: mysql_fetch_row(): supplied argument is not a valid MySQL result resour
mysql_connect("localhost","root","liubing");
mysql_select_db("text");
$sql=@"seclet * from 'bing2'" or die("失败");
if($sql) echo "成功";
$query=mysql_query($sql);
echo $query;
$rsa=mysql_fetch_row($query);
print_r ($rsa);
?>

报错内容:Warning: mysql_fetch_row(): supplied argument is not a valid MySQL result resource in E:\AppServ\www\bingbing\lianxi\aa.php on line 16
求回复

------解决方案--------------------
$sql=@"select * from bing2" or die("失败");

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

这样试试还报错吗

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn