move www-dir to exampleAddOns

This commit is contained in:
JHCD 2015-07-14 21:40:56 +02:00
parent beb955567f
commit ad88f65d0b
70 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,10 @@
<?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;
?>