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應(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丟失導致不能登錄等問題的解決方法
- php cookie 詳解使用實例
- PHP Cookie學習筆記
- PHP中cookie知識點學習
相關(guān)文章
Zend Framework框架Smarty擴展實現(xiàn)方法
這篇文章主要介紹了Zend Framework框架Smarty擴展實現(xiàn)方法,結(jié)合實例形式較為詳細的分析了Zend Framework框架Smarty擴展的具體步驟與相關(guān)設(shè)置技巧,需要的朋友可以參考下2016-03-03
PHP+jQuery 注冊模塊的改進(三):更新到Smarty3.1
本文是PHP+jQuery 注冊模塊的改進的第三篇,主要記錄了講Smarty更新到最新的3.1版本,是篇非常使用的文章,有需要的朋友可以參考下2014-10-10
php中smarty實現(xiàn)多模版網(wǎng)站的方法
這篇文章主要介紹了php中smarty實現(xiàn)多模版網(wǎng)站的方法,可實現(xiàn)smarty動態(tài)選擇模板的功能,需要的朋友可以參考下2015-06-06

