search
HomeBackend DevelopmentPHP Tutorialphp ajax user login and exit_PHP tutorial
php ajax user login and exit_PHP tutorialJul 13, 2016 pm 04:55 PM
ajaxjqueryphpmainandaccomplisharticleuserLog incombinequit

This article mainly talks about the combination of ajax and php in jquery to achieve the user login effect without refreshing. Friends in need can refer to it.

In this example we use Mysql database to create a user table with the following table structure:

The code is as follows Copy code
 代码如下 复制代码

CREATE TABLE `user` (
  `id` int(11) NOT NULL auto_increment,
  `username` varchar(30) NOT NULL COMMENT '用户名',
  `password` varchar(32) NOT NULL COMMENT '密码',
  `login_time` int(10) default NULL COMMENT '登录时间',
  `login_ip` varchar(32) default NULL COMMENT '登录IP',
  `login_counts` int(10) NOT NULL default '0' COMMENT '登录次数',
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8;
然后往user表中插入一条用户信息数据:

INSERT INTO `user` (`id`, `username`, `password`, `login_time`, `login_ip`, `login_counts`)
 VALUES(1, 'demo', 'fe01ce2a7fbac8fafaed7c982a04e229', '', '', 0);

CREATE TABLE `user` (
`id` int(11) NOT NULL auto_increment,
`username` varchar(30) NOT NULL COMMENT 'username',
`password` varchar(32) NOT NULL COMMENT 'password',
`login_time` int(10) default NULL COMMENT 'login time',
`login_ip` varchar(32) default NULL COMMENT 'Login IP',
`login_counts` int(10) NOT NULL default '0' COMMENT 'number of logins',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
Then insert a piece of user information data into the user table:

INSERT INTO `user` (`id`, `username`, `password`, `login_time`, `login_ip`, `login_counts`)
VALUES(1, 'demo', 'fe01ce2a7fbac8fafaed7c982a04e229', '', '', 0);

After the user enters the user name and password, the user will be prompted to log in successfully and the relevant login information will be displayed. If the user clicks "Exit", the user will exit to the user login interface.
 代码如下 复制代码


     

用户登录


            if(isset($_SESSION['user'])){
      ?>
     

       

,恭喜您登录成功!


       

您这是第次登录本站。


       

上次登陆本站的时间是:

【退出】


     

     
     

         


         



         

             
         

     

     
Enter index.php. If the user is logged in, the login information will be displayed. If the user is not logged in, the login box will be displayed to ask the user to log in.
The code is as follows Copy code

User login


                 If(isset($_SESSION['user'])){
?>

& Lt; p & gt; & lt; strong & gt; & lt;? Php echo $ _Session ['user'];? & Gt; & lt;/strong & gt;, congratulations!
& Lt; p & gt; you are the & lt; span & gt; & lt;? Php echo $ _Session ['login_counts'];? & Gt; & lt;/span & gt;
& Lt; p & gt; the time to log in to this site is: & lt; span & gt; & lt;? PHP Echo date ('y-m-d h: s', $ _ session ['login_time']);? & Gt;

【Exit】




       


         



                                                                                                                       
                                                                                                       


Note that the statement should be added to the index.php file header: session_start; at the same time, introduce the jquery library in the head part and include global.js. You can also write a beautiful CSS style for the login box. Of course, this example has been slightly written Made a simple style, please view the source code.

The code is as follows Copy code
 代码如下 复制代码


 


The global.js file includes the jquery code to be implemented. The first thing to do is to let the input box get the focus. As soon as it is opened like Baidu and Google, the mouse cursor will be in the input box. The usage code is as follows:
 代码如下 复制代码

$("input:text,textarea,input:password").focus(function() {
    $(this).addClass("cur_select");
});
$("input:text,textarea,input:password").blur(function() {
    $(this).removeClass("cur_select");
});

The code is as follows Copy code
$("input:text,textarea,input:password").focus(function() {
$(this).addClass("cur_select");
});
$("input:text,textarea,input:password").blur(function() {
$(this).removeClass("cur_select");
});

User login
After the user clicks the login button, it must first verify that the user's input cannot be empty, and then send an Ajax request to the background login.php. When the background verification login is successful, the logged-in user information is returned: such as the number of user logins and the last login time; if the login fails, login failure information is returned.

The code is as follows Copy code
$(".btn").live( 'click',function(){
 代码如下 复制代码
$(".btn").live('click',function(){
    var user = $("#user").val();
    var pass = $("#pass").val();
    if(user==""){
        $('
').html("用户名不能为空!").appendTo('.sub').fadeOut(2000);
        $("#user").focus();
        return false;
    }
    if(pass==""){
        $('
').html("密码不能为空!").appendTo('.sub').fadeOut(2000);
        $("#pass").focus();
        return false;
    }
    $.ajax({
        type: "POST",
        url: "login.php?action=login",
        dataType: "json",
        data: {"user":user,"pass":pass},
        beforeSend: function(){
            $('
').addClass("loading").html("正在登录...").css("color","#999")
.appendTo('.sub');
        },
        success: function(json){
            if(json.success==1){
                $("#login_form").remove();
                var div = "

"+json.user+",恭喜您登录成功!


               

您这是第"+json.login_counts+"次登录本站。


               

上次登录本站的时间是:"+json.login_time+"


                【退出】

";
                $("#login").append(div);
            }else{
                $("#msg").remove();
                $('
').html(json.msg).css("color","#999").appendTo('.sub')
.fadeOut(2000);
                return false;
            }
        }
    });
});
var user = $("#user").val(); var pass = $("#pass").val(); If(user==""){             $('
').html("Username cannot be empty!").appendTo('.sub').fadeOut(2000); ​​​​ $("#user").focus();          return false; } If(pass==""){             $('
').html("Password cannot be empty!").appendTo('.sub').fadeOut(2000);            $("#pass").focus();          return false; } $.ajax({         type: "POST", ​​ ​ url: "login.php?action=login",          dataType: "json", Data: {"user":user,"pass":pass},          beforeSend: function(){                    $('
').addClass("loading").html("Logging in...").css("color","#999") .appendTo('.sub');          }, Success: function(json){                  if(json.success==1){                       $("#login_form").remove();                   var div = "

"+json.user+", Congratulations on your successful login!

                                                                                                                                                                                                                   

This is the "+json.login_counts+"time to log in to this site.

& Lt; p & gt; the time to log in to this site is: & lt; span & gt; "+json.login_time+" & lt;/span & lt;/p & gt; & lt;                                                                                                                                                                                                                                 $("#login").append(div);                }else{                      $("#msg").remove(); $('
').html(json.msg).css("color","#999").appendTo('.sub') .fadeOut(2000);                       return false;                                                                        } }); });

When I make an Ajax request, the data transmission format is json, and the returned data is also json data. I use JS to parse the json data to get the user information after login, and then append it to the #login element through append to complete. Login operation.

User exits
When "Exit" is clicked, an Ajax request is sent to login.php, all Sessions are logged out in the background, and the page returns to the login interface.

The code is as follows Copy code
 代码如下 复制代码

$("#logout").live('click',function(){
    $.post("login.php?action=logout",function(msg){
        if(msg==1){
             $("#result").remove();
             var div = "

 
            


            

id='pass' />


            

            
";
             $("#login").append(div);
        }
    });
});
$("#logout").live('click',function(){ $.post("login.php?action=logout",function(msg){ If(msg==1){                  $("#result").remove();                  var div = "

                 

                                                                                                                                                                                                                                                    out out out there out       through id='pass' />                  
                                  
";                   $("#login").append(div);           } }); });

login.php
According to the request submitted by the front desk, when logging in, the user name and password entered by the user are obtained, and compared with the corresponding user name and password in the database. If the comparison is successful, the user's login information will be newly updated and the json data transmission will be assembled. Give it to the front desk.

$action = $_GET['action']; if ($action == 'login') { //Log in
The code is as follows
 代码如下 复制代码
session_start();
require_once ('connect.php');
 
$action = $_GET['action'];
if ($action == 'login') {  //登录
    $user = stripslashes(trim($_POST['user']));
    $pass = stripslashes(trim($_POST['pass']));
    if (empty ($user)) {
        echo '用户名不能为空';
        exit;
    }
    if (empty ($pass)) {
        echo '密码不能为空';
        exit;
    }
    $md5pass = md5($pass); //密码使用md5加密
    $query = mysql_query("select * from user where username='$user'");
 
    $us = is_array($row = mysql_fetch_array($query));
 
    $ps = $us ? $md5pass == $row['password'] : FALSE;
    if ($ps) {
        $counts = $row['login_counts'] + 1;
        $_SESSION['user'] = $row['username'];
        $_SESSION['login_time'] = $row['login_time'];
        $_SESSION['login_counts'] = $counts;
        $ip = get_client_ip(); //获取登录IP
        $logintime = mktime();
        $rs = mysql_query("update user set login_time='$logintime',login_ip='$ip',
login_counts='$counts'");
        if ($rs) {
            $arr['success'] = 1;
            $arr['msg'] = '登录成功!';
            $arr['user'] = $_SESSION['user'];
            $arr['login_time'] = date('Y-m-d H:i:s',$_SESSION['login_time']);
            $arr['login_counts'] = $_SESSION['login_counts'];
        } else {
            $arr['success'] = 0;
            $arr['msg'] = '登录失败';
        }
    } else {
        $arr['success'] = 0;
        $arr['msg'] = '用户名或密码错误!';
    }
    echo json_encode($arr); //输出json数据
}
elseif ($action == 'logout') {  //退出
    unset($_SESSION);
    session_destroy();
    echo '1';
}
Copy code

session_start();

require_once ('connect.php');

$user = stripslashes(trim($_POST['user'])); $pass = stripslashes(trim($_POST['pass']));

If (empty ($user)) {

echo 'Username cannot be empty'; } If (empty ($pass)) { echo 'Password cannot be empty'; exit; } $md5pass = md5($pass); //The password is encrypted using md5 $query = mysql_query("select * from user where username='$user'"); $us = is_array($row = mysql_fetch_array($query)); $ps = $us ? $md5pass == $row['password'] : FALSE;
If ($ps) {           $counts = $row['login_counts'] + 1;           $_SESSION['user'] = $row['username'];
          $_SESSION['login_time'] = $row['login_time'];
          $_SESSION['login_counts'] = $counts; ​​​​$ip = get_client_ip(); //Get login IP          $logintime = mktime();           $rs = mysql_query("update user set login_time='$logintime',login_ip='$ip', login_counts='$counts'");             if ($rs) {                  $arr['success'] = 1;                 $arr['msg'] = 'Login successful! ';                 $arr['user'] = $_SESSION['user'];                 $arr['login_time'] = date('Y-m-d H:i:s',$_SESSION['login_time']);                 $arr['login_counts'] = $_SESSION['login_counts'];          } else {                  $arr['success'] = 0;                 $arr['msg'] = 'Login failed';           } } else {           $arr['success'] = 0; ​​​​ $arr['msg'] = 'Username or password is wrong! '; } Echo json_encode($arr); //Output json data } elseif ($action == 'logout') { //Exit Unset($_SESSION); session_destroy(); echo '1'; } When the front-end request exits, just log out of the session and return 1 to the front-end JS for processing. Note that get_client_ip() in the above code is a function to obtain the client IP, which cannot be listed due to space limitations. http://www.bkjia.com/PHPjc/631694.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/631694.htmlTechArticleThis article mainly talks about the combination of ajax and php in jquery to achieve the user login effect without refreshing. Friends in need You can refer to it. In this example, we use Mysql database to create a use...
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software