php使用物件導向實現使用者登入身分識別驗證的功能

來源:互聯網
上載者:User
這篇文章主要為大家詳細介紹了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>

二、運行結果

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.