Initial commit
This commit is contained in:
14
src/Template/Apresults/index.ctp
Normal file
14
src/Template/Apresults/index.ctp
Normal file
@@ -0,0 +1,14 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user