"; exit; } require_once "../language/german.inc.php"; if (isset($_GET['action'])) { $action = $_GET['action']; } else { $action = ''; } if ($action == '') { # Gespeicherte Werte $query = "SELECT mvid, bezeichnung FROM jumi_mailverteiler ORDER BY mvid ASC"; $result = $db->query($query) or die("Cannot execute query"); while ($row = $result->fetch_array()) { $table_data[] = $row; } $smarty->assign('table_data', $table_data); } $smarty->assign('action', "$action"); $smarty->display("$template/dashboard/$templatename"); ?>