最近在學習php。學了一點關於登陸的東西,寫下來備忘。
建立四個頁面,分別命名為login.php check.php index.php error.php。。。
login頁面用表單建立一個登陸頁面,不多說了。在代碼裡用js指令碼判斷使用者名稱和密碼不可為空,為空白則重設焦點。代碼如下:
<script type="text/javascript">
function jc()
{
var userName=document.getElementById("userName");
var userPwd=document.getElementById("userPwd");
if(userName.value=="")
{
alert("請輸入使用者名稱");
userName.focus();
return false;
}
if(userPwd.value=="")
{
alert("請輸入使用者名稱");
userPwd.focus();
return false;
}
}
</script>
check是檢查頁面,如果密碼和使用者名稱正確則重新導向到index.php,否則定向到錯誤頁面。代碼如下:
<? session_start();
$userName=$_POST["userName"];
$userPwd=$_POST["userPwd"];
if($userName=="admin"&&$userPwd=="123456")
{
$_SESSION["userName"]=$userName;
echo "<script type='text/javascript'>window.location='index.php';
</script>";
}
else
{
echo"<script type='text/javascript'>
window.location='error.php';
</script>";
}
?>
最後說說session驗證。session函數是php內建的函數,用於記錄使用者的登入資訊,類似於cookie,但又有所區別。
我們可以在驗證頁面定義和使用session,然後在首頁再次定義和使用,以達到歡迎莫某的效果。上面再檢查裡的代碼已經有了,下面是首頁裡的代碼:
<?
session_start();
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>無標題文檔</title>
</head>
<body>
歡迎<? echo $_SESSION["userName" ]; ?>來到這裡
</body>
</html>
驗證一下,登陸頁面輸入使用者名稱和密碼,如果正確,會跳到首頁,顯示歡迎某某某,如果錯誤會跳到錯誤頁面,顯示錯誤。。。。