AI编程助手
AI免费问答

检验登陆类

PHP中文网   2016-05-25 17:15   1062浏览 原创

代码

<?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(&#39;登录成功!);window.location.href=&#39;index.php&#39;;</script>";
     }
     else
     {
		 echo "<script>alert(&#39;登录失败!&#39;);history.back();</script>";
         exit;
     }
   }


}


?>
声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。