1 Star 0 Fork 0

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

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
admin_user_search.php 1.26 KB
一键复制 编辑 原始数据 按行查看 历史
dearmite 提交于 2023-03-10 10:47 . 原始的这些文件
<?php
include_once ("admin_background_head.php");
?>
<?php
$user_name = $_POST['username'];
include_once ("conn.php");
$sql =<<<SQL
SELECT * FROM user_infor
WHERE name = '$user_name'
SQL;
$query = mysqli_query($link,$sql);
$infors = mysqli_fetch_all($query,MYSQLI_ASSOC);
$count = 0;
?>
<table border="1" width="100%" height="100" cellspacing="0" cellpadding="5">
<tr>
<th colspan="20" class="layui-bg-blue" >防疫志愿者基本信息</th>
</tr>
<tr>
<th>序号</th>
<th>姓名</th>
<th>密码</th>
<th>性别</th>
<th>手机号</th>
<th>出生日期</th>
<th>操作</th>
</tr>
<?php
foreach ($infors as $infor) {
$count ++;
?>
<tr>
<td><?php echo $count;?></td>
<td><?php echo $infor['name'];?></td>
<td><?php echo $infor['password'];?></td>
<td><?php echo $infor['sex'];?></td>
<td><?php echo $infor['phone'];?></td>
<td><?php echo $infor['birthday'];?></td>
<td><a href="admin_user_update_start.php?userid=<?php echo $infor['id']?>">编辑</a> <a href="admin_user_delete_start.php?userid=<?php echo $infor['id']?>">删除</a></td>
</tr>
<?php
}
?>
</table>
马建仓 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

搜索帮助