mirror of
https://github.com/Schrolli91/BOSWatch.git
synced 2025-12-06 07:42:03 +01:00
11 lines
250 B
PHP
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;
|
|
?>
|