Files
asd-control/src/Template/Apresults/index.ctp
2018-07-06 07:31:22 +02:00

14 lines
475 B
PHP

<table>
<tr><th>Typ</th><th>SNR</th><th>Anzahl</th><th>Apcount</th><th>Datum</th></tr>
<?php
foreach($apresults as $apresult) {
echo '<tr>';
echo '<td>'.$apresult['aptype'].'</td>';
echo '<td>'.$apresult['snr'].'</td>';
echo '<td>'.$apresult['anzahl'].'</td>';
echo '<td>'.$apresult['apcount'].'</td>';
echo '<td>'.date('Y-m-d H:i:s',strtotime($apresult['erzeugungsdatum'])).'</td>';
echo '</tr>';
}
?>
</table>