BOSWatch/www/old_webend/tpl/template.overview.php
Schrolli 87c1e9c307 edit in old_webend
- more information in overview page with the mysql concat() method
2015-07-14 11:01:15 +02:00

30 lines
758 B
PHP

<div>
<b>Last data (max. 25)</b>
<table style="width: 800px;">
<tr class="tableHead">
<td>ID</td>
<td>Datum - Zeit</td>
<td>Typ</td>
<td>Daten</td>
<td>Beschreibung</td>
<td></td>
</tr>
<?php
foreach ($tpl['lastAla'] as $lastAla)
{
$time = strtotime($lastAla['time']);
$time = date("d.m.Y H:i:s", $time);
echo "<tr>";
echo "<td>". $lastAla['id'] . "</td>";
echo "<td>". $time . "</td>";
echo "<td>". $lastAla['typ'] . "</td>";
echo "<td>". $lastAla['data'] . "</td>";
echo "<td>". $lastAla['description'] . "</td>";
echo "<td><a href='index.php?" . $lastAla['typ'] . "&id=" . $lastAla['id'] . "'><img src='gfx/lupe.png' alt='show'></a></td>";
echo "</tr>";
}
?>
</table>
</div>