第一回接触这种 查了好久也不会 = - 求解
程序员文章站
2024-02-14 23:47:40
...
第一次接触这种 查了好久也不会 = - 求解
登录验证的一小段代码 我数据库为 localhost root 无密码 , 我数据库已保存了一组密码。 无限密码错误 跳转页面 而且也报错
= - 求解脱 拜谢
------解决思路----------------------
你是怎么执行这个程序的
------解决思路----------------------
你的用户名和密码没有提交过去啦
红色框框分别加上
name="username"
name="password"
再试试
session_start();
class chkuserlogin{
private $username;
private $password;
public function __construct($username,$password){
$this->username=$username;
$this->password=$password;
require_once("connn.php");
$sql=mysql_query("select account from root where username='".$this->username."' and password='".$this->password."'",$conn);
$info=mysql_fetch_array($sql);
if($info==false){
echo "";
exit;
}else{
if($_SESSION["unc"]!=""){
session_unregister("unc");
}
session_register("unc");
$_SESSION["unc"]=$this->username;
mysql_query("update root set logintimes=logintimes+1,lastlogintime='".date("Y-m-d H:i:s")."'",$conn);
echo "";
}
}
}
$obj=new chkuserlogin($_POST["username"],md5($_POST["password"]));
$obj->chk();
?>
登录验证的一小段代码 我数据库为 localhost root 无密码 , 我数据库已保存了一组密码。 无限密码错误 跳转页面 而且也报错
= - 求解脱 拜谢
------解决思路----------------------
你是怎么执行这个程序的
------解决思路----------------------
你的用户名和密码没有提交过去啦
红色框框分别加上
name="username"
name="password"
再试试
相关文章
相关视频