PHP登录验证功能示例【用户名、密码、验证码、数据库、已登陆验证、自动登录和注销登录等】

作者:不能吃的坚果 时间:2023-11-14 23:24:02 

本文实例讲述了PHP登录验证功能。分享给大家供大家参考,具体如下:

登录界面

PHP登录验证功能示例【用户名、密码、验证码、数据库、已登陆验证、自动登录和注销登录等】

PHP登录验证功能示例【用户名、密码、验证码、数据库、已登陆验证、自动登录和注销登录等】

PHP登录验证功能示例【用户名、密码、验证码、数据库、已登陆验证、自动登录和注销登录等】

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>";

验证码和数据库的实现方法前面写过,这里不再赘述。

验证码制作://www.aspxhome.com/article/156850.htm
数据库连接://www.aspxhome.com/article/156875.htm

希望本文所述对大家PHP程序设计有所帮助。

来源:https://blog.csdn.net/C_jian/article/details/52859873

标签:PHP,登录验证
0
投稿

猜你喜欢

  • 服务端XMLHTTP(ServerXMLHTTP in ASP)进阶应用-User Agent伪装

    2008-11-11 12:29:00
  • 如何避免查询调查结果时出现不相关主题的重复记录?

    2009-11-07 18:42:00
  • python ip正则式

    2022-02-13 22:13:02
  • js 兼容多浏览器的回车和鼠标焦点事件代码(IE6/7/8,firefox,chrome)

    2024-04-23 09:24:07
  • 解读Scrapy回调函数callback传递参数的方式

    2022-12-02 04:12:53
  • 详细聊聊为什么Python中0.2+0.1不等于0.3

    2021-08-19 12:12:35
  • SQL中的连接查询详解

    2024-01-25 08:06:40
  • location.href 在IE6中不跳转的解决方法与推荐使用代码

    2024-04-19 10:13:38
  • golang原生实现JWT的示例代码

    2024-02-08 05:59:51
  • asp 分页函数,可以显示 1,2,3,4,5... 前十页,后十页,下一页,上一页

    2009-07-05 18:34:00
  • Go 结构体、数组、字典和 json 字符串的相互转换方法

    2024-05-05 09:26:42
  • Python中join()函数多种操作代码实例

    2021-11-10 02:15:43
  • python实现将json多行数据传入到mysql中使用

    2022-12-28 06:41:51
  • 数据库技巧——MySQL十大优化技巧

    2011-01-31 16:44:00
  • mysql SELECT语句去除某个字段的重复信息

    2024-01-17 04:15:41
  • Python+Seaborn绘制分布图的示例详解

    2021-08-14 16:51:29
  • 数据库Left join , Right Join, Inner Join 的相关内容,非常实用

    2024-01-16 16:59:56
  • OverFlow – 一个秘密武器

    2010-09-25 12:51:00
  • javascript中字符串替换函数replace()方法与c# 、vb 替换有一点不同

    2024-05-05 09:32:00
  • 教你如何看懂SQL Server查询计划

    2024-01-12 21:10:41
  • asp之家 网络编程 m.aspxhome.com