Initial commit

This commit is contained in:
2018-07-06 07:31:22 +02:00
commit 6ff6cc9563
312 changed files with 616782 additions and 0 deletions

View 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>