BOSWatch/exampleAddOns/simpleWeb/tpl/content.fms.php
2015-07-14 21:40:56 +02:00

11 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;
?>