php使用者登入代碼

來源:互聯網
上載者:User

//方法一 window 驗證使用者登入


   

 代碼如下 複製代碼

     $admin_name="admin";
        $admin_pawd="admin";
        if($php_auth_user!=$admin_name||$php_auth_pw!=$admin_pawd)
        {
                header('www-authenticate: basic realm="系統驗證"');
                header('http/1.0 401 unauthorized');
                echo "伺服器拒絕請求,你沒有許可權!";
                exit();
        }

//


  if (empty($_server['php_auth_user'])) {
    header("content-type: text/html; charset=big5");
    header('www-authenticate: basic realm=" authentication "');
    header('http/1.0 401 unauthorized');
    echo '請輸入正確的帳號及密碼, 不可以取消!';
    exit;
  } else {
    echo "你登入的帳號是 ".$_server['php_auth_user']."<br>";
    echo "你使用的密碼是 ".$_server['php_auth_pw']."<p>";
    $correctname="john";
    $correctpwd="1234" ;
     if (($_server['php_auth_user'] != $correctname) or
            ($_server['php_auth_pw'] !=$correctpwd)){
        echo "登入失敗, 請開啟新的瀏覽器重新登入";
     }else{
     echo "登入成功.....";
     }
  }
?>

方法二 php mysq

 代碼如下 複製代碼

<?php
   if (($_post['name'] != "john") or ($_post['passwd'] != "1234")):
?>
   <html>
   <title>登入畫面</title>
   <body>
   <b>未輸入帳號或密碼, 或帳號,密碼不正確 </b><p>
   <form action=<?php echo $_server['php_self'] ?> method=post>
   帳號 <input type=text name=name value="請輸入帳號" size=10><p>
   密碼 <input type=password name=passwd size=10><p>
   <input type=submit value=" 登入 ">
   <input type=reset  value=" 清除 ">
   </form>
   </body>
   </html>
<?php
   else:
     echo "登入成功 .....<p>";
     echo "你登入的帳號是 ".$_post['name']."<br>";
     echo "你使用的密碼是 ".$_post['passwd'];
   endif
?>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.