云计算课程大作业
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

51 lines
1.2 KiB

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>list</title>
<style type="text/css">
div{
width: 800px;
height: 500px;
border: outset 2px rgb(253, 253, 253);
border-radius: 1%;
margin: 20px auto;
}
</style>
</head>
<body style="background-color:rgba(233, 233, 233, 0.767)">
<br>
<h1 align="center" style="color:rgb(110, 108, 119)">学 生 考 勤 管 理 平 台</h1>
<div style="background-color:white">
<h3 align="center">学生名单</h3>
<table align="center">
<tr>
<th>学号&#12288;</th>
<th>学生姓名&#12288;</th>
<th>学生所在院系&#12288;</th>
<th>班级&#12288;</th>
<th>操作</th>
</tr>
<?php foreach($data as $k=>$v){?>
<tr>
<td><?=$v['jobnum']?></td>
<td><?=$v['name']?></td>
<td><?=$v['dept']?></td>
<td><?=$v['depthead']?></td>
<td>
<a href="./staff_update.php?id=<?=$v['jobnum']?>">修改</a>
<a href="./staff_del.php?id=<?=$v['jobnum']?>">删除</a>
</td>
</tr>
<?php }?>
</table>
<br><br><br><br><br><br><br><br><br>
<p align="right">
<a href="../apps/staff_add.php">添加学生</a>
<br><br><br>
<a href="../apps/attend_select_index.php">签到</a>
</p>
</div>
</body>
</html>