


PHP and mysql database realize web page login verification code sharing
This article mainly brings you an example of PHP and mysql database, web page login verification in ubutu 16.04 environment. The editor thinks it is quite good, so I will share it with you now and give it as a reference for everyone. Let’s follow the editor to take a look, I hope it can help everyone.
It happened that the recent domain name registration was passed, and I suddenly wanted to create a web page, although I had registered the domain name before for this purpose.
I asked a few people and said that it is easy to build a website using PHP on Linux, so I tried to make one. Here I mainly talk about the parts related to login verification;
The Prime Minister prepared a few documents , mainly index.php, conn.php, data.php and login.php;
login.php is mainly the data comparison part during the login process; the content of include ('conn.php') is as follows There is something to say.
<?php if(!isset($_POST['submit'])){ exit('login in error.'); } $username = htmlspecialchars($_POST['username']); $password = MD5($_POST['password']); include('conn.php'); echo"$password"; $check_query = mysqli_query($result,"select USERID from USERINFO where EMAIL='$username' and PASSWORD='$password' limit 1"); if($ret = mysqli_fetch_array($check_query)){ echo'connect true.'; } else { echo'connect false'; } ?>
Another thing to note is: $_POST targets the content in method = "post" in the form.
Because the MD5 encryption method is used, let me talk about it. When encrypting the background database, you also need to use the MD5 encryption method to update the data. The specific method is as follows:
UPDATE USERINFO SET PASSWORD = md5('root') WHERE USERID = 1000;
The table And the specific query location depends on the personal database.
conn.php is mainly related to the operations related to mysql database connection, which is divided into database connection and database selection part (pay attention to the return value of the database connection, do not use it casually, it will be used when citing later. )
<?php try{ $result = mysqli_connect('localhost','root','root'); mysqli_select_db($result,'WEBDATAS'); }catch(Exception $e) { echo $e->message; exit; } if(!$result) { return false; } echo "ok\n"; ?>
The rest is mainly index.php. This file is related to the homepage. I will only take out the login-related parts to explain (the template in boostrap is used here, for those who are interested) You can search boostrap on Baidu)
<?php session_start(); include_once('data.php'); $handle = db_connect(); if(!$handle){ echo 'Did not access to the database'; }else{ echo'connect success'; } ?>
The data.php login part contained in it is as follows:
<p class="modal fade" tabindex="-1" role="dialog" id="login"> <p class="modal-dialog" role="document"> <p class="modal-content"> <p class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button> <h3 class="modal-title">ログイン</h3> </p> <p class="modal-body"> <form class="form-signin" action="login.php" method = "post"> <h4 class="form-signin-heading">利用者名 パスワード 入力</h4> <label for="inputEmail" class="sr-only">利用者名</label> <input type="email" name="username" id="inputEmail" class="form-control" placeholder="利用者名を入力" required autofocus> <label for="inputPassword" class="sr-only">パスワード</label> <input type="password" name="password" id="inputPassword" class="form-control" placeholder="パスワード" required> <p class="checkbox"> <label> <input type="checkbox" value="remember-me"> ログイン状態を保持 </label> </p> <button class="btn btn-lg btn-primary btn-block" type="submit" name="submit">ログイン</button> </form> </p> <p class="modal-footer"> <button type="button" class="btn btn-default" data-dismiss="modal">クローズ</button> </p> </p> <!-- /.modal-content --> </p> <!-- /.modal-dialog --> </p>
The basic login verification part is these, mainly for comparison with the data in the database, which was used at the beginning The symmetric encryption method has not been carefully studied yet. I will take a closer look at it later when I have the opportunity.
Related recommendations:
Implement the function of remembering username and password in web login (complete automatic login)
The above is the detailed content of PHP and mysql database realize web page login verification code sharing. For more information, please follow other related articles on the PHP Chinese website!

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



The future of PHP will be achieved by adapting to new technology trends and introducing innovative features: 1) Adapting to cloud computing, containerization and microservice architectures, supporting Docker and Kubernetes; 2) introducing JIT compilers and enumeration types to improve performance and data processing efficiency; 3) Continuously optimize performance and promote best practices.

PHP and Python each have their own advantages, and the choice should be based on project requirements. 1.PHP is suitable for web development, with simple syntax and high execution efficiency. 2. Python is suitable for data science and machine learning, with concise syntax and rich libraries.

MySQL is an open source relational database management system. 1) Create database and tables: Use the CREATEDATABASE and CREATETABLE commands. 2) Basic operations: INSERT, UPDATE, DELETE and SELECT. 3) Advanced operations: JOIN, subquery and transaction processing. 4) Debugging skills: Check syntax, data type and permissions. 5) Optimization suggestions: Use indexes, avoid SELECT* and use transactions.

You can open phpMyAdmin through the following steps: 1. Log in to the website control panel; 2. Find and click the phpMyAdmin icon; 3. Enter MySQL credentials; 4. Click "Login".

MySQL and SQL are essential skills for developers. 1.MySQL is an open source relational database management system, and SQL is the standard language used to manage and operate databases. 2.MySQL supports multiple storage engines through efficient data storage and retrieval functions, and SQL completes complex data operations through simple statements. 3. Examples of usage include basic queries and advanced queries, such as filtering and sorting by condition. 4. Common errors include syntax errors and performance issues, which can be optimized by checking SQL statements and using EXPLAIN commands. 5. Performance optimization techniques include using indexes, avoiding full table scanning, optimizing JOIN operations and improving code readability.

PHP is not dying, but constantly adapting and evolving. 1) PHP has undergone multiple version iterations since 1994 to adapt to new technology trends. 2) It is currently widely used in e-commerce, content management systems and other fields. 3) PHP8 introduces JIT compiler and other functions to improve performance and modernization. 4) Use OPcache and follow PSR-12 standards to optimize performance and code quality.

Redis uses a single threaded architecture to provide high performance, simplicity, and consistency. It utilizes I/O multiplexing, event loops, non-blocking I/O, and shared memory to improve concurrency, but with limitations of concurrency limitations, single point of failure, and unsuitable for write-intensive workloads.

How to connect to MySQL using phpMyAdmin? The URL to access phpMyAdmin is usually http://localhost/phpmyadmin or http://[your server IP address]/phpmyadmin. Enter your MySQL username and password. Select the database you want to connect to. Click the "Connection" button to establish a connection.
