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

11 lines
250 B
PHP

<?php
//read POCSAG
$db->query("SELECT id, time, ric, function, functionChar, bitrate, msg, description FROM ".$tablePOC." ORDER BY id DESC");
$Rows = array();
while ($daten = $db->fetchAssoc())
{
$Rows[] = $daten;
}
$tpl['poc'] = $Rows;
?>