This commit is contained in:
Ricsi
2016-12-15 23:27:55 +01:00
parent 08627484da
commit d458b996a4
46 changed files with 1138 additions and 386 deletions

View File

@@ -0,0 +1,30 @@
<?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');
}
?>