代码拉取完成,页面将自动刷新
<?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>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。