php cookie用戶登錄的詳解及實(shí)例代碼
更新時間:2017年01月03日 08:34:30 投稿:lqh
php實(shí)現(xiàn)用戶登錄驗(yàn)證有很多方法,最常見的方法是session方法和cookie方法,session方法是服務(wù)器登錄驗(yàn)證方法,cookie方法是客戶端登錄驗(yàn)證方法,需要的朋友可以參考下
php cookie用戶登錄的實(shí)現(xiàn)
HTML源碼:
<html> <head> <title>php cookie用戶登錄的實(shí)現(xiàn)</title> </head> <body> <form name="forml" method="POST" action="CookieBasedPasswordLogin.php"> <table> <tr> <td colspan="2" > <div align="center"><b>Please Specify the Password</b></div> </td> </tr> <tr>> <td> <div align="right">Customer ID</div> </td> <td> <input type="text" name="username"> </td> </tr> <tr> <td> <div align="right">Password</div> </td> <td> <input type="password" name="password"> </td> </tr> <tr> <td colspan="2"> <center> <input type="submit" name="Submit" value="Login"> </center> </td> </tr> </table> </form> </body> </html>
php源碼:
<?php $now = getdate(); $storetime= $now["weekday"] . " " . $now["month"] ." " . $now["year"] ; $storetime.=" Time : "; if ($now["hours"] < 10) { $storetime.= "0" . $now["hours"]; } else { $storetime.= $now["hours"]; } $storetime.= ":"; if ($now["minutes"]<10) { $storetime.= "0" . $now["minutes"]; } else { $storetime.= $now["minutes"]; } $storetime.= ": "; if ($now["seconds"] <10) { $storetime.= "0" . $now["seconds"]; } else { $storetime.= $now["seconds"]; } if (isset($data)) { $counter=++$data[l]; setcookie("data[0]",$storetime,time() + (60*60*24)); setcookie("data[l]", $counter,time() + (60*60*24)); setcookie("data[2]",$username,time() + (60*60*24)); echo "<b><center>Hi " . $data[2] . " ! !</center></b><br>\n"; echo "<b><center>Last Login Time :" .$data[0] . "</center></b><br>\n"; echo "<b><center>Current Date :" .$storetime. "</center></b><br>\n"; echo "<b><center>Page View Count :" . $data[l]. "</center></b><br>\n"; echo "<b><center>You have successfully logged in!</center></b>"; echo ("<b><contor>You can access this area without entering a password for the next 24 hours!</center></b>"); } else { if (isset($username) && isset($password)) { if ($password=="superpass") { $counter=0; setcookie("data[0]",$storetime,time() + (60*60*24)); setcookie("data[l]",$counter,time() + (60*60*24)); setcookie("data[2]",$username,time() + (60*60*24)); $url="Location: cookieimp.php"; header($url); }else{ echo "<hl><center>INVALID PASSWORD!!!</center></hl>"; } } } ?>
感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!
您可能感興趣的文章:
- 詳解cookie驗(yàn)證的php應(yīng)用的一種SSO解決辦法
- PHP與JavaScript針對Cookie的讀寫、交互操作方法詳解
- PHP利用Cookie設(shè)置用戶30分鐘未操作自動退出功能
- PHP中Cookie的使用詳解(簡單易懂)
- php及codeigniter使用session-cookie的方法(詳解)
- PHP如何讀取由JavaScript設(shè)置的Cookie
- PHP設(shè)置Cookie的HTTPONLY屬性方法
- php頁面跳轉(zhuǎn)session cookie丟失導(dǎo)致不能登錄等問題的解決方法
- php cookie 詳解使用實(shí)例
- PHP Cookie學(xué)習(xí)筆記
- PHP中cookie知識點(diǎn)學(xué)習(xí)
相關(guān)文章
Yii2中使用join、joinwith多表關(guān)聯(lián)查詢
這篇文章主要介紹了Yii2中多表關(guān)聯(lián)查詢(join、joinwith)的相關(guān)資料,非常不錯,具有參考借鑒價值,需要的朋友可以參考下2016-06-06PHP代碼判斷設(shè)備是手機(jī)還是平板電腦(兩種方法)
隨著互聯(lián)網(wǎng)移動設(shè)備的普及,很多網(wǎng)站都兼容手機(jī)端瀏覽,為了更好的讓網(wǎng)頁在手機(jī)端顯示,我們都選擇了使用CSS媒體查詢制作響應(yīng)式模版。本文給大家介紹PHP代碼判斷設(shè)備是手機(jī)還是平板電腦(兩種方法),感興趣的朋友一起學(xué)習(xí)吧2015-10-10淺談laravel數(shù)據(jù)庫查詢返回的數(shù)據(jù)形式
今天小編就為大家分享一篇淺談laravel數(shù)據(jù)庫查詢返回的數(shù)據(jù)形式,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧2019-10-10laravel添加角色和模糊搜索功能的實(shí)現(xiàn)代碼
添加角色有很多種方法,角色添加顯示頁面路由、添加頁面控制器等,在角色搜索功能中通過修改index控制器來實(shí)現(xiàn),文中給大家提供laravel添加角色和模糊搜索功能的實(shí)現(xiàn)代碼,一起看看吧2021-06-06