php ajax user login and exit_PHP tutorial
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 | ||||
`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);
|
代码如下 | 复制代码 |
The code is as follows | Copy code |
User loginIf(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;
|
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 | ||||
|
代码如下 | 复制代码 |
$("input:text,textarea,input:password").focus(function() { |
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(){
"+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 | ||||
out out out there out through id='pass' /> |
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.
The code is as follows
|
Copy code
|
||||
session_start(); require_once ('connect.php'); |
$action = $_GET['action'];
If (empty ($user)) {
If ($ps) { $counts = $row['login_counts'] + 1; $_SESSION['user'] = $row['username'];
Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

Validator can be created by adding the following two lines in the controller.
