remember.php
check_remember.php
$name = $_POST['name'];
$password = $_POST['password'];
$remember = $_POST['remember'];
if($remember == 1){
setcookie('name',$name,time()+3600);
setcookie('password',$password,time()+3600);
setcookie('remember',$remember,time()+3600);
}else{
setcookie('name',$name,time()-3600);
setcookie('password',$password,time()-3600);
setcookie('remember',$remember,time()-3600);
}
echo "
返回";
?>
摘自 天天笑一下
http://www.bkjia.com/PHPjc/478333.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/478333.htmlTechArticleremember.php meta http-equiv=Content-Type content=text/html; charset=utf-8 / form id=form1 name=form1 method=post action=check_remember.php table width=300 border=1 align=center cel...
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