30 lines
340 B
PHP
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');
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
?>
|