龙盟编程博客 | 无障碍搜索 | 云盘搜索神器
快速搜索
主页 > web编程 > php编程 >

php 检验登陆类

时间:2014-11-26 02:22来源:网络整理 作者:网络 点击:
分享到:
检验登陆类 [代码片段(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
精彩图集

赞助商链接