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

11 lines
213 B
PHP

<?php
//read ZVEI
$db->query("SELECT id, time, zvei, description FROM ".$tableZVEI." ORDER BY id DESC");
$Rows = array();
while ($daten = $db->fetchAssoc())
{
$Rows[] = $daten;
}
$tpl['zvei'] = $Rows;
?>