jb-data.de/scripts/test0815.php
2025-08-11 22:23:30 +02:00

22 lines
No EOL
421 B
PHP

<?php
error_reporting(E_ALL); ini_set('display_errors',1);
$key=0;
$temp = $GLOBALS['mysql']->query("SELECT * FROM mitarbeiter WHERE aktiv>0 ORDER BY name");
while($row = $temp->fetch_assoc()) {
$tempma[$key]['id'] = $row['id'];
$tempma[$key]['name'] = $row['name'];
$tempma[$key]['typ'] = $row['typ'];
$key++;
}
$template->assign('tempma', $tempma);
$template->assign('content', 'tpl/test0815.tpl');
?>