30 lines
355 B
PHP
30 lines
355 B
PHP
<?php
|
|
|
|
|
|
# HA NINCS ID, AKKOR ISKOLALISTA
|
|
|
|
if ($this->is_id()) {
|
|
|
|
# ISKOLA SZERKESZTÉSE
|
|
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
# ISKOLA LISTA
|
|
|
|
$tr_type_query = "SELECT * FROM school ORDER BY sc_name ASC";
|
|
$tr_type_assoc_array = $sql->assoc_array($tr_type_query);
|
|
|
|
$smarty->assign('school_assoc_array',$tr_type_assoc_array);
|
|
$smarty->display('school_list.tpl');
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
?>
|