<table id="llegadasDespuesDe<?php echo $uqId ?>" class="table table-striped table-condensed">
<thead>
<tr>
<th>Sede</th>
<th>Cedula</th>
<th>Nombre</th>
<th>Marcacion</th>
</tr>
</thead>
<tbody>
<?php foreach($Empleados AS $Empleado): ?>
<tr>
<td><?php echo $Empleado->sedeEmp ?></td>
<td><?php echo $Empleado->cedEmp ?></td>
<td><?php echo $Empleado->nombreEmp ?></td>
<td><?php echo $Empleado->fechaMarca ?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
<script type="text/javascript" >
$(document).ready(function () {
$('#llegadasDespuesDe<?php echo $uqId ?>').DataTable({
"order": [[3, "desc"]]
});
});
</script>
<?php
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/