<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>attendance</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>学号 </th>
|
|
<th>学生姓名 </th>
|
|
<th>学生所在院系 </th>
|
|
<th>班级 </th>
|
|
<th>考勤数 </th>
|
|
<th>考勤状态</th>
|
|
</tr>
|
|
|
|
<?php foreach($data3 as $k=>$v){?>
|
|
<tr>
|
|
<td><?=$v['id']?></td>
|
|
<td><?=$v['name']?></td>
|
|
<td><?=$v['dept']?></td>
|
|
<td><?=$v['depthead']?></td>
|
|
<td><?=$v['num']?></td>
|
|
<td><?=$v['state']?></td>
|
|
</tr>
|
|
<?php }?>
|
|
<table>
|
|
|
|
<br><br><br>
|
|
<p align="right">
|
|
<a href="../apps/staff_list.php">返回</a>
|
|
</p>
|
|
</div>
|
|
</body>
|
|
</html>
|