diff --git a/www/tpl/content.overview.php b/www/tpl/content.overview.php index 8d2f141..8f4f7f6 100644 --- a/www/tpl/content.overview.php +++ b/www/tpl/content.overview.php @@ -16,4 +16,12 @@ $Rows[] = $daten; } $tpl['zvei'] = $Rows; -?> \ No newline at end of file + //read POCSAG + $db->query("SELECT id, time, ric, funktion, text FROM ".$tablePOC." ORDER BY id DESC LIMIT 50"); + $Rows = array(); + while ($daten = $db->fetchAssoc()) + { + $Rows[] = $daten; + } + $tpl['poc'] = $Rows; +?>