Home> Topics> php mysql> body text

How to connect php to mysql to implement a simple registration login page

coldplay.xixi
Release: 2020-11-25 17:34:03
forward
8393 people have browsed it

php mysql tutorialcolumn introduces the implementation of a simple registration login page.

How to connect php to mysql to implement a simple registration login page

Recommended:php myql tutorial

Login page index.html
How to connect php to mysql to implement a simple registration login page
Registration page register.html
How to connect php to mysql to implement a simple registration login page

After installing the Mysql database, use the MySQL database management page phpmyadmin creates database and form

Browser input:domain name/phpmyadmin, no domain name input:ip/phpmyadminor127.0.0.1/phpmyadmin(127.0.0.1 is the local address)
How to connect php to mysql to implement a simple registration login page
Create a form in the databaseHow to connect php to mysql to implement a simple registration login page

The code is as follows:

index.html

nbsp;html>  登录 

登录

Copy after login

用户名:

密码:

新用户注册

login.php

query("SET NAMES 'UTF8'"); $user = $_POST['user']; $pass = $_POST['pass']; $sql="SELECT * FROM users where user='{$user}' and pass='{$pass}'"; $result=$conn->query($sql); $row = mysqli_num_rows($result); //若表中存在输入的用户名和密码,row=1;若表中用户名不存在或密码错误,则row=0 if($row == 1){ echo $row['user']."登陆成功!"; } else{ echo"登录失败,请重新登录!"; } ?>
Copy after login

register.html

nbsp;html>  注册 

注册

Copy after login

用户名:

密码:

联系:

已注册

register. php

set_charset('utf8'); $user = $_POST['user']; $pass = $_POST['pass']; $connect = $_POST['connect']; $sql = "INSERT INTO users(id,user,pass,connect) VALUES (null,'{$user}' ,'{$pass}','{$connect}')"; mysqli_query($conn,$sql) or die(mysqli_error($conn)); echo("注册成功!!!
点击登录") ?>
Copy after login

————————————————————————————————————

Supplement: (pits that have been stepped on)

1. How to connect to the database with PHP7: using mysqli or PDO
When using mysqli_connect(), use localhost as the address It's not an IP, otherwise you won't be able to connect to the server.
Reference: https://blog.csdn.net/zwliang98/article/details/82997349

##2. php outputs the error message of executing the sql statement:

mysqli_query($conn,$sql) or die(mysqli_error( $conn ));
Copy after login

3. bug
bug 1:
Incorrect integer value: '' for column 'id' at row 1
For versions above php5, if the value is empty, NULL should be written

#错误 $sql = "INSERT INTO users(id,user,pass,connect) VALUES ('','{$user}' ,'{$pass}','{$connect}')";#改为 $sql = "INSERT INTO users(id,user,pass,connect) VALUES (null,'{$user}' ,'{$pass}','{$connect}')";
Copy after login

bug 2:
Incorrect string value: ' \xE7\x94\xB7' for column 'sex' at row 1
Link: MySQL insert Chinese error problem method

The above is the detailed content of How to connect php to mysql to implement a simple registration login page. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:csdn.net
Statement of this Website
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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!