14 lines
475 B
PHP
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>
|