mysql_num_rows()调用出错,

WBOY
Release: 2016-06-13 12:10:47
Original
1259 people have browsed it

mysql_num_rows()调用出错,求助!
$name=$_POST['username'];
$pwd=$_POST['password'];

$con=mysql_connect("localhost","root","123456");
mysql_select_db("leelogin_db",$con);
if($name&&$pwd){
    $sql="SELECT * FROM lee_tb WHERE username='$name'and password='$pwd'";
    echo $sql;
    $res=mysql_query($sql);

    $rows=mysql_num_rows($res);
echo $rows;
    if($rows){
        echo "<script>alert('Login succeeded!');history.back()</script>";
    }
}



上面是部分源代码   我加了两个echo来输出$sql 和$rows  但是每次都提示mysql_num_rows出错,报错如下:
SELECT * FROM lee_tb WHERE username='admin'and password='12456'
Warning: mysql_num_rows() expects parameter 1 to be resource, boolean given in F:\xampp\htdocs\phpstudy\login.php on line 18


在phpmyadmin中的对应数据表中有三个字段,自增的personID username password,但是就是查询不到结果集,求助求助~~~~
------解决思路----------------------
你记住,出现这种错误Warning: mysql_num_rows() expects parameter 1 to be resource, boolean given in F:\xampp\htdocs\phpstudy\login.php on line 18
基本上就是mysql_query($sql);错了,也就是你的sql语句错了!

username='admin'和and之间应该有个空格  如果字段存的是字符串 那么加引号! 如果是数字 不加引号!password=12456

<br />SELECT * FROM lee_tb WHERE username='admin' and password='12456'<br />
Copy after login

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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!