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

溫馨提示×

溫馨提示×

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

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

如何在PHP中利用Ajax實現一個用戶驗證碼驗證登錄功能

發布時間:2021-01-28 15:47:24 來源:億速云 閱讀:246 作者:Leah 欄目:開發技術

這篇文章將為大家詳細講解有關如何在PHP中利用Ajax實現一個用戶驗證碼驗證登錄功能,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。

yz.php:  生成驗證碼的PHP 文件,將驗證碼將在SESSION 里,供登錄時對比調用

index.php: 用戶登錄的HTML 文件
loginCheck.php: 驗證用戶登錄的文件

下面一一解析:
yz.php 文件

<?php
 session_start();

 //生成驗證碼圖
 Header("Content-type: image/PNG");
 //長與寬
 $im = imagecreate(44,18);
 // 設置背景色:
 $back = ImageColorAllocate($im, 245,245,245);
 // 填充背景色:
 imagefill($im,0,0,$back);

 srand((double)microtime()*1000000);
 $vcodes;
 //生成4位數字
 for($i=0;$i<4;$i++){
  $font = ImageColorAllocate($im, rand(100,255),rand(0,100),rand(100,255));
  $authnum=rand(1,9);
  $vcodes.=$authnum;
  imagestring($im, 5, 2+$i*10, 1, $authnum, $font);
 }

 //加入干擾象素
 for($i=0;$i<100;$i++){
  $randcolor = ImageColorallocate($im,rand(0,255),rand(0,255),rand(0,255));
  imagesetpixel($im, rand()%70 , rand()%30 , $randcolor);
 }
  
 ImagePNG($im);
 ImageDestroy($im);

 // 將四位的驗證碼保存在 SESSION 里,登錄時調用對比
 $_SESSION["VCODE"]=$vcodes;
?>

index.php: 注意,在這文件里不要取 $_SESSION["VCODE"], 否則會取晚一步的,刷新后才能顯示上一個驗證碼

在 loginCheck.php 里驗證就好了

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> 
<head>
<meta http-equiv="Content-Type" content="text/html;charset=gb2312">
<title>管理后臺| 請登錄</title>
<link rel="stylesheet" type="text/css" href="\css\a.css">
<style type="text/css">
<!--
  #main{
   font-family:宋體;
   font-size:10pt;
   text-align:center;
   margin-top:510px;
  }
  
  body{
   background-attachment:fixed;
   background-position:center;
   background-image:url(./images/w2.jpg);
   background-repeat: no-repeat;
  }
  
  #authCode{background-Color:#F8F9FF;}
  
  table{text-align:center;}

//-->
</style>
<script type="text/javascript" src="./js/trim.js"></script>
<script type="text/javascript">
<!--

 function clearX(){
  document.getElementById('authCode').value="";
 }

 // 點擊圖片重新獲得新的驗證碼:
 function getVCode() { 
  var vcode=document.getElementById('vcode'); 
  vcode.src ='yz.php?nocache='+new Date().getTime(); 
 }


 //定義XMLHttpRequest對象
 var xmlHttp;     

 // 創建 XMLHttpRequest:
 function createXmlHttpRequest(){
 var xmlHttp=null;
 try{
  // Firefox, Opera 8.0+, Safari
  xmlHttp=new XMLHttpRequest();
 }catch(e){
  // Internet Explorer
  try{
  xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
  }catch(e){
  xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
 }
 return xmlHttp;
 }

 // AJAX 檢查登錄: 有密碼,要用POST 提交
 function login(){
  var authCode=trim(document.getElementById('authCode').value);
  var username=trim(document.getElementById('username').value);
  var password=trim(document.getElementById('password').value);
  if(username=="" || password=="" || authCode==""){
   alert("請輸入用戶名和密碼和驗證碼!");
   return false;
  }else{
   if(!xmlHttp) xmlHttp=createXmlHttpRequest();
    var send_string="username="+username+"&password="+password+"&authCode="+authCode+"&fresh="+Math.random();
    xmlHttp.open("POST","loginCheck.php",true); 
    xmlHttp.setRequestHeader("Content-Type","application/x-www-form-urlencoded"); 
    xmlHttp.send(send_string); 
    xmlHttp.onreadystatechange=function(){
     if(xmlHttp.readystate==4 && xmlHttp.status==200){
      var answer=xmlHttp.responseText;
      if(answer=="ok")                     //跳轉到管理中心頁面
       window.location.href="adminCenter.php";
      else{
       alert("用戶名密碼或驗證碼不正確! 請重新輸入!");
       document.getElementById('username').focus();
      }
    }
   }
  }
 }

//-->
</script>
</head>
<body onload="document.getElementById('username').focus();">
 <div id="main">
   <table>
     <tr>
     <td>用戶名:<input type="text" id="username" /></td>
     <td>密   碼:<input type="password" id="password" /></td>
     <td>驗證碼:<input type="text" id="authCode" size="6" maxlength="4" value="驗證碼" onfocus="clearX()"/></td>
     <td><img id="vcode" src="yz.php" alt="看不清?點擊換一張" onclick="getVCode()" /></td>
     <td><input id="loginButton" type="submit" value="登 錄" onclick="login()"/></td>
     </tr>
    </table>
 </div>
</body>
</html>

loginCheck.php  驗證用戶登錄的文件

<?php 
 session_start();
 include("../conn/connDB.php");
 
 // 取得POST過來的參數:
 $username=$_POST["username"];
 $password=md5($_POST["password"]);
 $authCode=$_POST["authCode"];       
 
 $feedback="no";

//對比是否==SESSION中的驗證碼,不能放在客戶端做,否則取不正確的值
 if($authCode==$_SESSION["VCODE"]){

   $SQL="select * from users where username='$username' and password='$password'";
   $result=mysql_query($SQL);
   $rows=mysql_num_rows($result);
  if($rows==1)                       // 驗證成功
   $feedback="ok";
   $_SESSION["admin"]=true;           //為了后臺安全,存入SESSION,表明 ADMIN 已登錄,供后面調用
  }
  
 echo $feedback;
 
?>

關于如何在PHP中利用Ajax實現一個用戶驗證碼驗證登錄功能就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

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

AI

武定县| 根河市| 乐平市| 阳原县| 海丰县| 柳江县| 扎囊县| 祥云县| 象州县| 庆城县| 阿坝县| 西和县| 黎平县| 田林县| 大悟县| 来宾市| 南京市| 宝鸡市| 岳池县| 上饶市| 秭归县| 长宁区| 揭东县| 灯塔市| 衡阳市| 望都县| 隆化县| 仪征市| 武义县| 平舆县| 石狮市| 霍山县| 塔河县| 英吉沙县| 天全县| 介休市| 忻州市| 柯坪县| 乡城县| 睢宁县| 嘉峪关市|