Files
code-cegled/_include/include_regions.php
2016-12-15 23:27:55 +01:00

30 lines
340 B
PHP

<?php
# HA NINCS ID, AKKOR RÉGIÓLISTA
if ($this->is_id()) {
# RÉGIÓ SZERKESZTÉSE
}
else {
# RÉGIÓ LISTA
$reg_query = "SELECT * FROM region ORDER BY reg_name ASC";
$reg_assoc_array = $sql->assoc_array($reg_query);
$smarty->assign('reg_assoc_array',$reg_assoc_array);
$smarty->display('region_list.tpl');
}
?>