php 检验登陆类
检验登陆类 [代码片段(38行)]
<?php
class checklogin
{
var $name;
var $pwd;
function __construct($username,$password)
{
$this->name=$username;
$this->pwd=$password;
}
function checkinput()
{
global $db;
$sql="select * from tb_manager where name='$this->name' and pwd='$this->pwd'";
$res=$db->query($sql);
$info=$db->fetch_array($res);
if($info['name']==$this->name and $info['pwd']==$this->pwd)
{
$_SESSION[admin_name]=$info[name];
$_SESSION[pwd]=$info[pwd];
echo "<script>alert('登录成功!);window.location.href='index.php';</script>";
}
else
{
echo "<script language='javascript'>alert('登录失败!');history.back();</script>";
exit;
}
}
}
?>
//该片段来自于http://outofmemory.cn
- 上一篇:php Whois信息查询
- 下一篇:php 密码动态生成(复杂、纯英文、纯数字)
精彩图集
精彩文章






