您好,登錄后才能下訂單哦!
在一個(gè)網(wǎng)站中登陸功能是必不可少的,本文簡(jiǎn)單的講述了在php中如何實(shí)現(xiàn)登陸功能。
登錄界面:
html代碼(login.html):
<form action="login.php" method="post"> <fieldset> <legend>用戶登錄</legend> <ul> <li> <label>用戶名:</label> <input type="text" name="username"> </li> <li> <label>密 碼:</label> <input type="password" name="password"> </li> <li> <label> </label> <input type="checkbox" name="remember" value="yes">7天內(nèi)自動(dòng)登錄 </li> <li> <label> </label> <input type="submit" name="login" value="登錄"> </li> </ul> </fieldset> </form>
login.php:(登陸處理頁(yè))
<?php header('Content-type:text/html; charset=utf-8'); // 開啟Session session_start(); // 處理用戶登錄信息 if (isset($_POST['login'])) { # 接收用戶的登錄信息 $username = trim($_POST['username']); $password = trim($_POST['password']); // 判斷提交的登錄信息 if (($username == '') || ($password == '')) { // 若為空,視為未填寫,提示錯(cuò)誤,并3秒后返回登錄界面 header('refresh:3; url=login.html'); echo "用戶名或密碼不能為空,系統(tǒng)將在3秒后跳轉(zhuǎn)到登錄界面,請(qǐng)重新填寫登錄信息!"; exit; } elseif (($username != 'username') || ($password != 'password')) { # 用戶名或密碼錯(cuò)誤,同空的處理方式 header('refresh:3; url=login.html'); echo "用戶名或密碼錯(cuò)誤,系統(tǒng)將在3秒后跳轉(zhuǎn)到登錄界面,請(qǐng)重新填寫登錄信息!"; exit; } elseif (($username = 'username') && ($password = 'password')) { # 用戶名和密碼都正確,將用戶信息存到Session中 $_SESSION['username'] = $username; $_SESSION['islogin'] = 1; // 若勾選7天內(nèi)自動(dòng)登錄,則將其保存到Cookie并設(shè)置保留7天 if ($_POST['remember'] == "yes") { setcookie('username', $username, time()+7*24*60*60); setcookie('code', md5($username.md5($password)), time()+7*24*60*60); } else { // 沒有勾選則刪除Cookie setcookie('username', '', time()-999); setcookie('code', '', time()-999); } // 處理完附加項(xiàng)后跳轉(zhuǎn)到登錄成功的首頁(yè) header('location:index.php'); } } ?>
index.php(默認(rèn)主頁(yè)):
<?php header('Content-type:text/html; charset=utf-8'); // 開啟Session session_start(); // 首先判斷Cookie是否有記住了用戶信息 if (isset($_COOKIE['username'])) { # 若記住了用戶信息,則直接傳給Session $_SESSION['username'] = $_COOKIE['username']; $_SESSION['islogin'] = 1; } if (isset($_SESSION['islogin'])) { // 若已經(jīng)登錄 echo "你好! ".$_SESSION['username'].' ,歡迎來到個(gè)人中心!<br>'; echo "<a href='logout.php'>注銷</a>"; } else { // 若沒有登錄 echo "您還沒有登錄,請(qǐng)<a href='login.html'>登錄</a>"; } ?>
logout.php注銷頁(yè)
<?php header('Content-type:text/html; charset=utf-8'); // 注銷后的操作 session_start(); // 清除Session $username = $_SESSION['username']; //用于后面的提示信息 $_SESSION = array(); session_destroy(); // 清除Cookie setcookie('username', '', time()-99); setcookie('code', '', time()-99); // 提示信息 echo "歡迎下次光臨, ".$username.'<br>'; echo "<a href='login.html'>重新登錄</a>"; ?>
登錄成功的狀態(tài):
若勾選7天內(nèi)自動(dòng)登錄,則會(huì)將登錄信息通過Cookie和Session技術(shù)保存在本地Cookie文件中,7天內(nèi)會(huì)自動(dòng)登錄。
注銷頁(yè)面:
登錄錯(cuò)誤的幾種情況都做了處理:
以上就是php實(shí)現(xiàn)簡(jiǎn)單的登陸功能(附源碼)的詳細(xì)內(nèi)容,更多請(qǐng)關(guān)注億速云其它相關(guān)文章!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。