php cookie用戶登錄的詳解及實例代碼
更新時間:2017年01月03日 08:34:30 投稿:lqh
php實現(xiàn)用戶登錄驗證有很多方法,最常見的方法是session方法和cookie方法,session方法是服務(wù)器登錄驗證方法,cookie方法是客戶端登錄驗證方法,需要的朋友可以參考下
php cookie用戶登錄的實現(xiàn)
HTML源碼:
<html>
<head>
<title>php cookie用戶登錄的實現(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驗證的php應用的一種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丟失導致不能登錄等問題的解決方法
- php cookie 詳解使用實例
- PHP Cookie學習筆記
- PHP中cookie知識點學習
相關(guān)文章
Yii2中使用join、joinwith多表關(guān)聯(lián)查詢
這篇文章主要介紹了Yii2中多表關(guān)聯(lián)查詢(join、joinwith)的相關(guān)資料,非常不錯,具有參考借鑒價值,需要的朋友可以參考下2016-06-06
淺談laravel數(shù)據(jù)庫查詢返回的數(shù)據(jù)形式
今天小編就為大家分享一篇淺談laravel數(shù)據(jù)庫查詢返回的數(shù)據(jù)形式,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧2019-10-10

