本篇主要介紹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中文網其他相關文章!