91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

PHP實現登錄驗證功能

發布時間:2021-06-04 16:05:44 來源:億速云 閱讀:109 作者:Leah 欄目:開發技術

這期內容當中小編將會給大家帶來有關PHP實現登錄驗證功能,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

login.html

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Title</title>
</head>
<body>
<form method="post" action="doLogin.php">
  <input type="text" placeholder="用戶名" name="username"><br><br>
  <input type="password" placeholder="密碼" name="password"><br><br>
  <input type="text" placeholder="驗證碼" name="verifycode" class="captcha"><br><br>
  <img id="captcha_img" src="captcha.php?r=<?php echo rand();?>" alt="驗證碼">
  <label><a href="javascript:void(0)" rel="external nofollow" onclick="document.getElementById('captcha_img').src='captcha.php?r='+Math.random()">換一個</a> </label><br>
  <label><input type="checkbox" name="autologin[]" value="1"/>自動登錄</label><br>
  <button type="submit">登錄</button>
</form>
</body>
</html>

doLogin.php

<?php
header("Content-type:text/html;charset=UTF-8");
require "mysql.php";      //導入mysql.php訪問數據庫
session_start();        //開啟會話一獲取到服務器端驗證碼
$username=$_POST['username'];
$password=$_POST['password'];
$autologin=isset($_POST['autologin'])?1:0;   //獲取是否選擇了自動登錄
$verifycode=$_POST['verifycode'];
$code=$_SESSION['code'];    //獲取服務器生成的驗證碼
/*
 * 首先進行判空操作,通過后進行驗證碼驗證,通過后再進行數據庫驗證。
 * 手機號碼和郵箱驗證可根據需要自行添加
 * */
if(checkEmpty($username,$password,$verifycode)){
  if(checkVerifycode($verifycode,$code)){
    if(checkUser($username,$password)){
      $_SESSION['username']=$username; //保存此時登錄成功的用戶名
      if($autologin==1){        //如果用戶勾選了自動登錄就把用戶名和加了密的密碼放到cookie里面
        setcookie("username",$username,time()+3600*24*3);  //有效期設置為3天
        setcookie("password",md5($password),time()+3600*24*3);
      }
      else{
        setcookie("username","",time()-1);  //如果沒有選擇自動登錄就清空cookie
        setcookie("password","",time()-1);
      }
      header("location: index.php ");      //全部驗證都通過之后跳轉到首頁
    }
  }
}
//方法:判斷是否為空
function checkEmpty($username,$password,$verifycode){
  if($username==null||$password==null){
    echo '<html><head><Script Language="JavaScript">alert("用戶名或密碼為空");</Script></head></html>' . "<meta http-equiv=\"refresh\" content=\"0;url=login.html\">";
  }
  else{
    if($verifycode==null){
      echo '<html><head><Script Language="JavaScript">alert("驗證碼為空");</Script></head></html>' . "<meta http-equiv=\"refresh\" content=\"0;url=login.html\">";
    }
    else{
      return true;
    }
  }
}
//方法:檢查驗證碼是否正確
function checkVerifycode($verifycode,$code){
  if($verifycode==$code){
    return true;
  }
  else{
    echo '<html><head><Script Language="JavaScript">alert("驗證碼錯誤");</Script></head></html>' . "<meta http-equiv=\"refresh\" content=\"0;url=login.html\">";
  }
}
//方法:查詢用戶是否在數據庫中
function checkUser($username,$password){
  $conn=new Mysql();
  $sql="select * from user where name='{$username}' and password='{$password}';";
  $result=$conn->sql($sql);
  if($result){
    return true;
  }
  else{
    echo '<html><head><Script Language="JavaScript">alert("用戶不存在");</Script></head></html>' . "<meta http-equiv=\"refresh\" content=\"0;url=login.html\">";
  }
  $conn->close();
}
//方法:手機格式驗證
function checkPhoneNum($phonenumber){
  $preg="/^1[34578]{1}\d{9}$/";
  if(preg_match($preg,$phonenumber)){
    return ture; //驗證通過
  }else{
    echo '<html><head><Script Language="JavaScript">alert("手機號碼格式有誤");</Script></head></html>' . "<meta http-equiv=\"refresh\" content=\"0;url=login.html\">";//手機號碼格式不對
  }
}
//方法:郵箱格式驗證
function checkEmail($email){
  $preg = '/^(\w{1,25})@(\w{1,16})(\.(\w{1,4})){1,3}$/';
  if(preg_match($preg, $email)){
    return true;
  }else{
    echo '<html><head><Script Language="JavaScript">alert("y郵箱格式有誤");</Script></head></html>' . "<meta http-equiv=\"refresh\" content=\"0;url=login.html\">";
  }
}

logout.php

<?php
//退出登錄并跳轉到登錄頁面
unset($_SESSION['username']);
setcookie("username","",time()-1);  //清空cookie
setcookie("password","",time()-1);
header("location: login.html ");

index.php

<?php
session_start();
if(empty($_COOKIE['username'])&&empty($_COOKIE['password'])){
  if(isset($_SESSION['username']))
    echo "登錄成功,歡迎您".$_SESSION['username']."<a href='logout.php'>退出登錄</a>";
  else
    echo "你還沒有登錄,<a href='login.html'>請登錄</a>";
}
else
  echo "登錄成功,歡迎您:".$_COOKIE['username']."<a href='logout.php'>退出登錄</a>";

上述就是小編為大家分享的PHP實現登錄驗證功能了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

php
AI

鹤壁市| 泰顺县| 富川| 会宁县| 新绛县| 策勒县| 新兴县| 兰西县| 类乌齐县| 敦化市| 湟中县| 寻乌县| 甘泉县| 铁岭县| 五莲县| 钟祥市| 阳朔县| 湘阴县| 平昌县| 博罗县| 慈利县| 淮北市| 义乌市| 紫云| 桐梓县| 崇州市| 明溪县| 长宁区| 哈巴河县| 新和县| 宝鸡市| 阳新县| 连南| 固安县| 长寿区| 怀安县| 琼海市| 左云县| 瑞昌市| 开封市| 阳东县|