blog.php
cookie页面
login.php
prepare("select id,username,password from user where username=? and password=?");
$stmt->execute(array($_POST['username'],($_POST['password'])));
if($stmt->rowCount()>0){
list($id,$username)=$stmt->fetch(PDO::FETCH_NUM);
$time=time()+24*60*60;
setCookie("uid",$id,$time,"/");
setCookie("username",$username,$time,"/");
setCookie("isLogin",1,$time,"/");
echo '';
}
else{
echo "登陆失败";
}
}
?>
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
setCookie("username",$username,$time,"/");