這篇文章主要為大家詳細介紹了php物件導向的使用者登入身分識別驗證,具有一定的參考價值,感興趣的小夥伴們可以參考一下
本文執行個體為大家分享了php使用者登入身分識別驗證的具體代碼,供大家參考,具體內容如下
一、代碼
conn.php
<?php $conn = new com("adodb.connection"); $connstr="driver={microsoft access driver (*.mdb)}; dbq=". realpath("data/db_database07_188.mdb"); $conn->open($connstr); ?>
index.php
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>使用者身分識別驗證</title> <link rel="stylesheet" type="text/css" href="css/style.css" rel="external nofollow" > <style type="text/css"> <!-- .STYLE1 {color: #FFFFFF} --> </style> </head> <body> <table width="250" border="0" align="center" cellpadding="1" cellspacing="0"> <tr> <td height="75" bgcolor="#0099CC"><table width="250" height="75" border="0" cellpadding="0" cellspacing="1"> <form name="form1" method="post" action="index.php"> <tr> <td height="25" colspan="2" bgcolor="#0099CC"><p align="center" class="STYLE1">使用者身分識別驗證</p></td> </tr> <tr> <td width="60" height="25" bgcolor="#FFFFFF"><p align="center">使用者名稱:</p></td> <td width="187" bgcolor="#FFFFFF"><p align="left"> <input type="text" name="username" size="22" class="inputcss"></p></td> </tr> <tr> <td height="25" bgcolor="#FFFFFF"><p align="center">密碼:</p></td> <td height="25" bgcolor="#FFFFFF"><p align="left"> <input type="password" name="userpwd" size="22" class="inputcss"></p></td> </tr> <tr> <td height="25" colspan="2" bgcolor="#FFFFFF"><p align="center"><input name="submit" type="submit" value="登入" class="buttoncss"></p></td> </tr> </form> </table></td> </tr> </table> <?php if($_POST[submit]!="") { $username=$_POST[username]; //接收提交的使用者名稱 $userpwd=$_POST[userpwd]; //接收提交的密碼 if(trim($username)==""||trim($userpwd)=="") { echo "<script>alert('請輸入使用者名稱或使用者密碼!');history.back();</script>"; exit; } class chk //定義密碼驗證類 { private $name; //定義使用者名稱屬性 private $pwd; //定義密碼屬性 public function __construct($x,$y) //建構函式,對類的屬性初始化 { $this->name=$x; $this->pwd=$y; } public function chkuser() //驗證使用者身份 { include_once("conn.php"); $rs=new com("adodb.recordset"); //建立記錄集對象 $rs->open("select * from tb_user where username='".$this->name."' and userpwd='".$this->pwd."'",$conn,3,1); if($rs->eof || $rs->bof) { echo "<script>alert('對不起,密碼或使用者名稱錯誤!');history.back();</script>"; exit; } else { echo "<script>alert('恭喜您登入成功!');history.back();</script>"; exit; } } } $chk1=new chk($username,$userpwd); //對密碼驗證類進行執行個體化 $chk1->chkuser(); //調用chkuser()方法驗證使用者身份 } ?> </body> </html>
二、運行結果