前台表单:
<span style="font-size:18px;"><span style="font-size:18px;"><form action="check_login.php" name="loginform" method="post">
帐号:
<input type="text" name="name" />
密码:
<input type="password" name="pwd" />
<input type="submit" value="登 录" />
</form></span></span>
后台登陆验证代码:
<span style="font-size:18px;"><span style="font-size:18px;"><html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset="utf-8" />
</head>
<?php
session_start(); //初始化session变量
$username = $_POST['name']; //接收表单提交的用户名
$password=md5($_POST['pwd']); //接收表单提交的密码
class chkinput //定义类
{
var $name;
var $pwd;
function chkinput($x,$y) //定义一个方法
{
$this->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) //如果管理员名称或密码不正确,则弹出相关提示信息
{
echo "<script language='javascript'>alert('您输入的管理员名称或密码错误,请重新输入!');history.back();</script>";
exit;
}
else //如果管理员名称或密码正确,则直接跳转到登陆成功后界面
{
echo "<script>window.location='home.php';</script>";
$_SESSION['admin_name']=$info['username']; //将管理员名称存到$_SESSION[admin_name]变量中
$_SESSION['pwd']=$info['password']; 将管理员名称存到$_SESSION[pwd]变量中
}
}
}
$obj=new chkinput(trim($username),trim($password)); //创建对象
$obj->checkinput(); //调用类
?>
</html></span></span>
对PHP项目中,利用session对每一个网页做登陆验证:
checklogin2.php
<span style="font-size:18px;"><html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset="utf-8" />
</head>
<?php error_reporting(E_ALL^E_NOTICE); //屏蔽NOTICE级错误 ?>
<?php
session_start();
//此文件用与验证用户是否登陆,若以登陆则跳转到要访问界面,若没有登录则跳转到登陆界面。
if($_SESSION["admin_name"] == "")
{
echo "<script>alert('您尚未登陆,请先登录后再访问!');window.location.href='index.html';</script>";
}
?>
</html></span>
在其他PHP文件中,都要调用上面的登录验证文件,形式如下;
<?php
require_once("checklogin2.php");
?>