php $_SESSION会员登录实例分享_php技巧

WBOY
풀어 주다: 2016-05-16 19:55:33
원래의
1531명이 탐색했습니다.

php会员登录模块是网站开发中很简单的一个模块,本实例主要给php初学者一个简单的参考,其中的逻辑还是要读者自己领会,多编多思考。
login.php文件

<&#63;php
  ob_start();
  session_start();
&#63;>
<&#63;
  // error_reporting(E_ALL);
  // ini_set("display_errors", 1);
&#63;>
<html lang="en"> 
  <head>
   <title>Tutorialspoint.com</title>
   <link href="css/bootstrap.min.css" rel="stylesheet">   
   <style>
     body {
      padding-top: 40px;
      padding-bottom: 40px;
      background-color: #ADABAB;
     }     
     .form-signin {
      max-width: 330px;
      padding: 15px;
      margin: 0 auto;
      color: #017572;
     }     
     .form-signin .form-signin-heading,
     .form-signin .checkbox {
      margin-bottom: 10px;
     }     
     .form-signin .checkbox {
      font-weight: normal;
     }     
     .form-signin .form-control {
      position: relative;
      height: auto;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
      padding: 10px;
      font-size: 16px;
     }     
     .form-signin .form-control:focus {
      z-index: 2;
     }     
     .form-signin input[type="email"] {
      margin-bottom: -1px;
      border-bottom-right-radius: 0;
      border-bottom-left-radius: 0;
      border-color:#017572;
     }     
     .form-signin input[type="password"] {
      margin-bottom: 10px;
      border-top-left-radius: 0;
      border-top-right-radius: 0;
      border-color:#017572;
     }     
     h2{
      text-align: center;
      color: #017572;
     }
   </style>   
  </head>  
  <body>   
   <h2>Enter Username and Password</h2> 
   <div class="container form-signin">     
     <&#63;php
      $msg = '';      
      if (isset($_POST['login']) && !empty($_POST['username']) && !empty($_POST['password'])) {        
        if ($_POST['username'] == 'tutorialspoint' && $_POST['password'] == '1234') {
         $_SESSION['valid'] = true;
         $_SESSION['timeout'] = time();
         $_SESSION['username'] = 'tutorialspoint';
         echo 'You have entered valid use name and password';
        }
        else 
        {
         $msg = 'Wrong username or password';
        }
      }
     &#63;>
   </div> <!-- /container -->   
   <div class="container">   
     <form class="form-signin" role="form" action="<&#63;php echo htmlspecialchars($_SERVER['PHP_SELF']); &#63;>" method="post">
      <h4 class="form-signin-heading"><&#63;php echo $msg; &#63;></h4>
      <input type="text" class="form-control" name="username" placeholder="username = tutorialspoint" required autofocus></br>
      <input type="password" class="form-control" name="password" placeholder="password = 1234" required>
      <button class="btn btn-lg btn-primary btn-block" type="submit" name="login">Login</button>
     </form>      
     Click here to clean <a href="logout.php" tite="Logout">Session.    
   </div>    
  </body>
</html>
로그인 후 복사

Logout.php文件

<&#63;php
  session_start();
  unset($_SESSION["username"]);
  unset($_SESSION["password"]); 
  echo 'You have cleaned session';
  header('Refresh: 2; URL=login.php');
&#63;>
로그인 후 복사

以上就是本文的全部内容,希望对大家的学习有所帮助。

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
최신 이슈
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!