php cookie用戶登錄的詳解及實(shí)例代碼
更新時(shí)間:2017年01月03日 08:34:30 投稿:lqh
php實(shí)現(xiàn)用戶登錄驗(yàn)證有很多方法,最常見(jià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>"; } } } ?>
感謝閱讀,希望能幫助到大家,謝謝大家對(duì)本站的支持!
您可能感興趣的文章:
- 詳解cookie驗(yàn)證的php應(yīng)用的一種SSO解決辦法
- PHP與JavaScript針對(duì)Cookie的讀寫(xiě)、交互操作方法詳解
- PHP利用Cookie設(shè)置用戶30分鐘未操作自動(dòng)退出功能
- PHP中Cookie的使用詳解(簡(jiǎn)單易懂)
- php及codeigniter使用session-cookie的方法(詳解)
- PHP如何讀取由JavaScript設(shè)置的Cookie
- PHP設(shè)置Cookie的HTTPONLY屬性方法
- php頁(yè)面跳轉(zhuǎn)session cookie丟失導(dǎo)致不能登錄等問(wèn)題的解決方法
- php cookie 詳解使用實(shí)例
- PHP Cookie學(xué)習(xí)筆記
- PHP中cookie知識(shí)點(diǎn)學(xué)習(xí)
相關(guān)文章
php筆記之:初探PHPcms模塊開(kāi)發(fā)介紹
本篇文章介紹了,PHPcms模塊開(kāi)發(fā)的應(yīng)用。需要的朋友參考下2013-04-04php微信公眾平臺(tái)開(kāi)發(fā)(一) 配置接口
這篇文章主要為大家詳細(xì)介紹了php微信公眾平臺(tái)開(kāi)發(fā)第一篇,微信公眾號(hào)配置接口,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2016-12-12Yii2中使用join、joinwith多表關(guān)聯(lián)查詢
這篇文章主要介紹了Yii2中多表關(guān)聯(lián)查詢(join、joinwith)的相關(guān)資料,非常不錯(cuò),具有參考借鑒價(jià)值,需要的朋友可以參考下2016-06-06PHP代碼判斷設(shè)備是手機(jī)還是平板電腦(兩種方法)
隨著互聯(lián)網(wǎng)移動(dòng)設(shè)備的普及,很多網(wǎng)站都兼容手機(jī)端瀏覽,為了更好的讓網(wǎng)頁(yè)在手機(jī)端顯示,我們都選擇了使用CSS媒體查詢制作響應(yīng)式模版。本文給大家介紹PHP代碼判斷設(shè)備是手機(jī)還是平板電腦(兩種方法),感興趣的朋友一起學(xué)習(xí)吧2015-10-10淺談laravel數(shù)據(jù)庫(kù)查詢返回的數(shù)據(jù)形式
今天小編就為大家分享一篇淺談laravel數(shù)據(jù)庫(kù)查詢返回的數(shù)據(jù)形式,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過(guò)來(lái)看看吧2019-10-10Laravel框架之blade模板新手入門(mén)教程及小技巧
Blade 是 laravel 提供的一個(gè)簡(jiǎn)單強(qiáng)大的模板引擎。下面這篇文章主要給大家介紹了關(guān)于Laravel框架之blade模板新手的入門(mén)教程以及一些使用的小技巧,文中通過(guò)示例代碼介紹的非常詳細(xì),需要的朋友可以參考下。2017-12-12laravel添加角色和模糊搜索功能的實(shí)現(xiàn)代碼
添加角色有很多種方法,角色添加顯示頁(yè)面路由、添加頁(yè)面控制器等,在角色搜索功能中通過(guò)修改index控制器來(lái)實(shí)現(xiàn),文中給大家提供laravel添加角色和模糊搜索功能的實(shí)現(xiàn)代碼,一起看看吧2021-06-06