Files
2026-04-25 13:52:04 +08:00

57 lines
2.0 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
$pageTitle = '网站后台管理 - 用户编辑';
$page = 'users';
include("header.php");
?>
<?php
// 根据传递的id获取表中的各个信息
// 连接mysql数据库
include("db.php");
$userid = $_REQUEST["id"];
$sql = "select * from users where id='$userid'";
$result = mysqli_query($conn, $sql);
$user = mysqli_fetch_assoc($result);
?>
<main class="main-content">
<div class="page-header">
<h2>编辑用户</h2>
<p>修改用户信息</p>
</div>
<div class="form-card form-card-sm">
<form action="users.php" method="post">
<input type="hidden" value="<?php echo $user["id"]; ?>" name="id">
<div class="form-group">
<label for="username">用户名</label>
<input type="text" id="username" name="username" placeholder="请输入用户名" value="<?php echo $user["username"]; ?>">
</div>
<div class="form-group">
<label for="password">密码</label>
<input type="password" id="password" name="password" placeholder="请输入新密码">
<p class="form-hint">密码留空则不修改</p>
</div>
<div class="form-group">
<label for="password2">确认密码</label>
<input type="password" id="password2" name="password2" placeholder="请再次输入新密码">
</div>
<div class="form-group">
<label for="email">邮箱</label>
<input type="email" id="email" name="email" placeholder="请输入邮箱地址" value="<?php echo $user["email"]; ?>">
</div>
<div class="btn-group">
<input type="submit" class="btn btn-primary" value="保存" name="change">
<a href="users_list.php" class="btn btn-secondary">取消</a>
</div>
</form>
</div>
</main>
</body>
</html>