本文实例讲述了PHP实现的登录页面信息提示功能。分享给大家供大家参考,具体如下:
login.PHP:
PHP;">
<Meta charset="UTF-8">
Insert title here
PHP
echo "
"; //通过 error 值,确定提示信息 if(!empty($_GET['error'])){ $error=$_GET['error']; If($error==1){ Echo "您输入的账号或密码错误!"; }elseif ($error==2){ Echo "您输入的账号或密码正确!"; } } ?>
"; //通过 error 值,确定提示信息 if(!empty($_GET['error'])){ $error=$_GET['error']; If($error==1){ Echo "您输入的账号或密码错误!"; }elseif ($error==2){ Echo "您输入的账号或密码正确!"; } } ?>
check_login.PHP:
PHP;">
name=$x; //将管理员名称传给类对象$this->name
$this->pwd=$y; //将管理员密码传给类对象$this->pwd
}
function checkinput()
{
include("conn.PHP"); //连接数据库文件
$sql=MysqL_query("select username,password from admin where username='".$this->name."' and password='".$this->pwd."'",$conn);
$info=MysqL_fetch_array($sql); //检索管理员名称和密码是否正确
if($info==false) //如果管理员名称或密码不正确,则弹出相关提示信息
{
header("location:login.PHP?error=1");
exit;
}
else //如果管理员名称或密码正确,则直接跳转到登陆成功后界面
{
header("location:login.PHP?error=2");
$_SESSION['admin_name']=$info['username']; //将管理员名称存到$_SESSION[admin_name]变量中
$_SESSION['pwd']=$info['password']; ////将管理员名称存到$_SESSION[pwd]变量中
}
}
}
$obj=new chkinput(trim($username),trim($password)); //创建对象
$obj->checkinput(); //调用类
?>
conn.PHP:
PHP;">
更多关于PHP相关内容感兴趣的读者可查看本站专题:《》、《》、《》、《》及《PHP常见数据库操作技巧汇总》
希望本文所述对大家PHP程序设计有所帮助。
原文链接:https://www.f2er.com/php/17092.html