我有一个页面显示尚未签入的人员表,此表中的一列是"进程"单击时按钮应将其在数据库中的处理时间更新为单击时间。如何在单击已处理按钮时更新每个用户处理时间,而无需输入任何额外信息? (如果可能的话)
我有一个名为new_student_arrival_reservations的控制器,它使用相应的名称(UsersNewStudentArrivalReservation)访问数据库中的表。这是我的表格中显示需要处理的人的代码。
<table class="table table-striped table-hover">
<thead>
<tr><th>Name</th><th>ID</th><th>Program #</th><th>Residence Hall</th><th>Room Number</th><th>Process</th></tr>
</thead>
<tbody>
<?php foreach($newStudents as $id => $newStudent): ?>
<tr>
<td><?= $newStudent['UsersNewStudentArrivalReservation']['student_name']; ?></td>
<td><?= $newStudent['UsersNewStudentArrivalReservation']['student_id']; ;?></td>
<td><?= $newStudent['UsersNewStudentArrivalReservation']['checkin_num']; ?></td>
<td><?= $newStudent['UsersNewStudentArrivalReservation']['res_hall']; ?></td>
<td><?= $newStudent['UsersNewStudentArrivalReservation']['room_number']; ?></td>
<td>
<button type="button">Process</button>
</td>
</tr>
<?php endforeach; ?>
</tbody>
表格完美显示,所有信息均正确无误。如前所述,我希望每行上的进程按钮更新那些人的处理时间。
如果需要任何其他信息,请告诉我。谢谢!