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,11 @@
<?php
//read all
$db->query("SELECT id, time, concat(fms, ' Stat:', status, ' (', directionText, ')') as data, description, 'fms' AS typ FROM ".$tableFMS." UNION ALL SELECT id, time, zvei as data, description, 'zvei' AS typ FROM ".$tableZVEI." UNION ALL SELECT id, time, concat(ric, ' ', functionChar) as data, description, 'pocsag' AS typ FROM ".$tablePOC." ORDER BY time DESC LIMIT 25");
$Rows = array();
while ($daten = $db->fetchAssoc())
{
$Rows[] = $daten;
}
$tpl['lastAla'] = $Rows;