本文主要介紹了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簡單的登陸檢定類別的詳細內容。更多資訊請關注PHP中文網其他相關文章!