VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > PHP >
  • php实现的简单检验登陆类

这篇文章主要介绍了php实现的简单检验登陆类,可实现基本的php数据库查询及密码匹配的功能,需要的朋友可以参考下,本文实例讲述了php实现的简单检验登陆类,分享给大家供大家参考,具体如下:

  1. <?php 
  2. class checklogin 
  3.   var $name
  4.   var $pwd
  5.   function __construct($username,$password
  6.   { 
  7.    $this->name=$username
  8.    $this->pwd=$password
  9.   } 
  10.   function checkinput() 
  11.   { 
  12.    global $db
  13.    $sql="select * from tb_manager where name='$this->name' and pwd='$this->pwd'"
  14.    $res=$db->query($sql); 
  15.    $info=$db->fetch_array($res);  
  16.    if($info['name']==$this->name and $info['pwd']==$this->pwd) 
  17.    { 
  18.      $_SESSION[admin_name]=$info[name]; 
  19.      $_SESSION[pwd]=$info[pwd]; 
  20.      echo "<script>alert('登录成功!);window.location.href='index.php';</script>"
  21.    } 
  22.    else 
  23.    { 
  24.      echo "<script language='javascript'>alert('登录失败!');history.back();</script>"
  25.      exit
  26.    } 
  27.   } 
  28. ?>
  29.  

出处:http://www.phpfensi.com/php/20210528/16030.html


相关教程