1 Star 0 Fork 0

毕设研究小组/PHP疫情的增删改查的作业

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
admin_user_integral_update_start.php 2.26 KB
一键复制 编辑 原始数据 按行查看 历史
dearmite 提交于 2023-03-10 10:47 . 原始的这些文件
<?php
include_once ('admin_background_head.php');
?>
<?php
include_once ('conn.php');
$userid = $_GET["userid"];
$sql =<<<SQL
SELECT * FROM user_infor
WHERE id= $userid
SQL;
$query = mysqli_query($link,$sql);
$infors = mysqli_fetch_all($query,MYSQLI_ASSOC);
$user_id = $infors[0]['id'];
$user_name = $infors[0]['name'];
$user_phone = $infors[0]['phone'];
$user_integral = $infors[0]['integral'];
?>
<div>
<h1 class="layui-bg-red" align="center"><?php echo $user_name;?>的积分信息修改</h1>
<hr class="layui-bg-orange" >
<form action="admin_user_integral_update_end.php" method="post">
<div ng-show="show">
<table cellpadding="10" cellspacing="1" border="soild 1px #000">
<tr>
<td>编号:</td>
<td>
<input type="text" name="userid" disabled value="<?php echo $infors[0]['id']; ?>">
<input type="text" name="userid" hidden readonly value="<?php echo $infors[0]['id']; ?>">
</td>
</tr>
<tr>
<td>用户名:</td>
<td>
<input type="text" name="username" disabled value="<?php echo $infors[0]['name']; ?>">
<input type="text" id="user_name" name="username" hidden readonly value="<?php echo $infors[0]['name']; ?>">
</td>
</tr>
<tr>
<td>电话号</td>
<td>
<input type="text" name="userphone" disabled value="<?php echo $infors[0]['phone']; ?>">
<input type="text" id="userphone" name="userphone" hidden readonly value="<?php echo $infors[0]['phone']; ?>">
</td>
</tr>
<tr>
<td>积分:</td>
<td>
<input type="text" name="userintegral" value="<?php echo $user_integral;?>">
</td>
</tr>
<tr align="center">
<td colspan="2"><input type="submit" id="btn_sub" value="修改"></td>
</tr>
</table>
</div>
</form>
</div>
<?php
include_once ('admin_background_foot.php');
?>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/dearmite/beautiful-user-other-manage.git
git@gitee.com:dearmite/beautiful-user-other-manage.git
dearmite
beautiful-user-other-manage
PHP疫情的增删改查的作业
master

搜索帮助