本文目录一览:
- 1、PHP登陆界面提示密码错误.我的密码表是passwd 注册后 密码表passwd是乱码.
- 2、谁帮我看看我这php登陆页面错在哪里了。老是提示用户名或密码错误。
- 3、PHP登陆页面,哪里错了,为什么一直显示用户名错误或者密码错误
- 4、php程序,在线急等,只能出现 用户名或密码错误,登录失败!
- 5、php写登陆页面一直提示用户名或密码出错
PHP登陆界面提示密码错误.我的密码表是passwd 注册后 密码表passwd是乱码.
在执行sql之前把语句输出,看看是否是你要的,如果在执行之前就是乱码了就在取参数的时候处理
谁帮我看看我这php登陆页面错在哪里了。老是提示用户名或密码错误。
$password=trim($_POST[pw]; //这个漏了一个")"
$sql="select * from users where username='$username' and password='$password'";
这句改成:
$sql="select * from users where `username`='".$username."' and `password`='".$password."'";
试一下;
PHP登陆页面,哪里错了,为什么一直显示用户名错误或者密码错误
网上银行的登陆密码和U盾密码是分别设置的,可以是不同的密码,增加U 盾不会改变用户名。估计是你留的网上银行登陆密码和U盾密码记混了。
php程序,在线急等,只能出现 用户名或密码错误,登录失败!
这个原因就多了
1,检查数据库中是否有你查询的记录,如果没有返回 登录失败很正常
2 echo $password 和 $studentid 的值出来看下,在去数据库对应 是否有这个值
3 studentid='".$studentid."' 如果这个字段是INT型,最好去掉单引号
4 如果是要查询条数 sql最好写成 $query="select count(*) as total from member where studentid=".$studentid." and password='".$password."'
然后 $res=mysql_query($query); $row=mysql_fetch_assoc($res);$num=$row['total'];
php写登陆页面一直提示用户名或密码出错
$sql = mysql_query("select * from user where username='$username' and password='$password' ",$conn); 试试呢
;