要用PHP制作一个简单的登录界面,可以按照以下步骤进行:
1. 创建HTML文件:创建一个名为`login.html`的HTML文件,并在其中添加以下内容:
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>登录</title>
</head>
<body>
<h1>登录</h1>
<form action="login.php" method="post">
<label for="username">用户名:</label>
<input type="text" id="username" name="username" required><br><br>
<label for="password">密码:</label>
<input type="password" id="password" name="password" required><br><br>
<input type="submit" value="登录">
</form>
</body>
</html>
```
2. 创建PHP文件:创建一个名为`login.php`的PHP文件,并在其中添加以下代码:
```php
<?php
// 检查表单数据
if (isset($_POST['username']) && isset($_POST['password'])) {
$username = $_POST['username'];
$password = $_POST['password'];
// 检查用户名和密码是否正确
if ($username == 'admin' && $password == 'password123') {
// 成功登录,跳转到主页
header('Location: index.php');
- 相关评论
- 我要评论
-