云计算课程大作业
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.
 
 

47 lines
1.1 KiB

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>select</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)">
<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="./attend_select_del.php?id=<?=$v['jobnum']?>">删除</a></td>
</tr>
<?php }?>
</table>
<br>
<br>
<br>
<p align="right">
<a href=" ../apps/attend_check.php">确认</a>
</p>
</div>
</body>
</html>