php寫登陸模組

來源:互聯網
上載者:User

最近在學習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>

 

驗證一下,登陸頁面輸入使用者名稱和密碼,如果正確,會跳到首頁,顯示歡迎某某某,如果錯誤會跳到錯誤頁面,顯示錯誤。。。。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.