PHP Study Guide: How to Write a Simple Login Page
Introduction:
PHP is a widely used server-side scripting language that can be embedded into HTML , used to dynamically generate web content. In web development, login page is one of the common features. This article will introduce you to how to write a simple login page using PHP, with code examples attached.
Step 1: Create an HTML form
First, we need to create an HTML form for users to enter their username and password. The following is a simple login form example:
<!DOCTYPE html> <html> <head> <title>登录页面</title> </head> <body> <h2>用户登录</h2> <form method="POST" action="login.php"> <label for="username">用户名:</label> <input type="text" name="username" id="username" required><br><br> <label for="password">密码:</label> <input type="password" name="password" id="password" required><br><br> <input type="submit" value="登录"> </form> </body> </html>
Step 2: Create a PHP script
Next, we need to create a PHP script to handle the submission of the login form and validate user input. The following is a simple login.php script example:
<?php // 获取用户输入的用户名和密码 $username = $_POST['username']; $password = $_POST['password']; // 进行基本的用户名和密码验证 if ($username == 'admin' && $password == '123456') { echo '登录成功!'; } else { echo '用户名或密码错误!'; } ?>
Step 3: Run the code
Save the above code into two files: login.html and login.php, and place them on the web server appropriate location. By visiting login.html you will see a simple login page. When you enter the correct username and password into the form and submit it, the login.php script will validate these inputs and display the appropriate prompt information.
Note:
Summary:
This article introduces how to use PHP to write a simple login page. Through the combination of HTML forms and PHP scripts, we can quickly implement a simple user login function. Of course, in practical applications, we still need to consider more security and user-friendliness issues, but this simple login page example is enough to help beginners get started and understand the basic login logic and code structure.
The above is the detailed content of PHP Study Guide: How to Write a Simple Login Page. For more information, please follow other related articles on the PHP Chinese website!