sql语句错误

WBOY
WBOYOriginal
2016-06-23 14:12:161003browse

MySQL

$query="select * from a where `z`='$url[query]' limit 0,10";这么写就报错误Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in$query="select * from a where `z`='$url[query]';但是这样就可以,为什么? 

回复讨论(解决方案)

$query="select * from a where `z`='".$url['query']."' limit 0,10";

echo mysql_error(); 看看

我也是菜鸟,但是看传智播客的php视频后学到了这招排错方法,先$query打印(echo)出来,然后将这个打印的结果放入到mysql黑窗口中看看其是不是能够得到结果。如果不能,看看报错信息,适当修改下。
看你的报错信息,是结果集$res=mysql_query($sql,$conn)没有成功获取到。

判断下看是否有值

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