這篇文章主要介紹了php實現的簡單檢驗登陸類,可實現基本的php數據庫查詢及密碼匹配的功能,需要的朋友可以參考下
本文實例講述了php實現的簡單檢驗登陸類。分享給大家供大家參考。具體如下:
- <?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程序設計有所幫助。
新聞熱點
疑難解答