BOSWatch/www/old_webend/tpl/content.fms.php
Schrolli 1e18c2ed67 edit the old webend
- insert all new fields from the database
- own page for each function
- overview for last 50 alarm of all function in one
2015-07-14 10:23:43 +02:00

10 lines
248 B
PHP

<?php
//read FMS
$db->query("SELECT id, time, fms, status, direction, directionText, tsi, description FROM ".$tableFMS." ORDER BY id DESC");
$Rows = array();
while ($daten = $db->fetchAssoc())
{
$Rows[] = $daten;
}
$tpl['fms'] = $Rows;
?>