欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

php實現(xiàn)的簡單檢驗登陸類

 更新時間:2015年06月18日 15:35:20   作者:瘋狂的流浪  
這篇文章主要介紹了php實現(xiàn)的簡單檢驗登陸類,可實現(xiàn)基本的php數(shù)據(jù)庫查詢及密碼匹配的功能,需要的朋友可以參考下

本文實例講述了php實現(xiàn)的簡單檢驗登陸類。分享給大家供大家參考。具體如下:

<?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;
   }
  }
}
?>

希望本文所述對大家的php程序設(shè)計有所幫助。

相關(guān)文章

最新評論