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

WBOY
Release: 2016-06-13 10:48:09
Original
1299 people have browsed it

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());

这样试试还报错吗

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template