sql delete replaced by delete flag log list (simple), log categories minor bug fixes in css
30 lines
362 B
PHP
30 lines
362 B
PHP
<?php
|
|
|
|
|
|
# HA NINCS ID, AKKOR VÁROSLISTA
|
|
|
|
if ($this->is_id()) {
|
|
|
|
# VÁROS SZERKESZTÉSE
|
|
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
# VÁROS LISTA
|
|
|
|
$scc_query = "SELECT * FROM school_city WHERE scc_deleted = 0 ORDER BY scc_city ASC";
|
|
$scc_assoc_array = $sql->assoc_array($scc_query);
|
|
|
|
$smarty->assign('scc_assoc_array',$scc_assoc_array);
|
|
$smarty->display('city_list.tpl');
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
?>
|