BOSWatch/exampleAddOns/simpleWeb/tpl/content.zvei.php

11 lines
213 B
PHP
Raw Permalink Normal View History

<?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;
?>