php verify name exists in mysql

藏色散人
Release: 2023-02-25 18:34:01
Original
2884 people have browsed it

php verify name exists in mysql

#How does php verify whether the name exists in mysql?

PHP connects to MySQL to query whether the user name exists (login verification)

The code is as follows:

<?php
header("Content-Type:text/html;charset=utf8");
$username = $_GET["username"]; //获取输入用户名
$password = $_GET["password"]; //获取输入密码
$mysql_server_name = "localhost:3306"; //连接数据库端口
$mysql_username = "root"; //用户名
$mysql_password = "123456"; //密码
$mysql_database = "test"; //数据库名称
$conn = new mysqli($mysql_server_name, $mysql_username, $mysql_password, $mysql_database); //构造函数mysql
$sql = $conn->query("select username from user where username =&#39;{$username}&#39; and password = &#39;{$password}&#39;"); //查询数据库中的用户名和密码 并返回集合
$row = mysqli_fetch_assoc($sql); //取其中一行
if ($row > 0) { //判断是否存在
echo "欢迎&#39;{$username}&#39;再次登录";
} else {
echo ",您还没有账号,请先进行注册!!!";
header("location:register.html"); //跳转至注册页面
}
?>
Copy after login

For more PHP knowledge, please visit PHP中文网!

The above is the detailed content of php verify name exists in mysql. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
php
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template