jb-data.de/scripts/ajax/ma_edit.php
2025-08-11 22:23:30 +02:00

31 lines
No EOL
1 KiB
PHP

<?php
error_reporting(E_ALL); ini_set('display_errors',0);
$mad = $GLOBALS['mysql']->query_single("SELECT * FROM mitarbeiter WHERE id='".$_POST['maID']."'");
$template->assign('ma', $mad);
//--------------------------- Mitarbeiter ID
$_SESSION['maID']=$_POST['maID'];
//--------------------------- Mitarbeitertyp
$typ = $GLOBALS['mysql']->query_array("SELECT * FROM ma_typ ORDER by id");
$template->assign('matyp', $typ);
//--------------------------- Tariftyp
$ttyp= $GLOBALS['mysql']->query_array("SELECT * FROM tariftyp ORDER by id");
$template->assign('mattyp', $ttyp);
//--------------------------- Konfession
$tmpk = $GLOBALS['mysql']->query_single("SELECT * FROM konfessionen WHERE id='".$mad['konfessionen']."'");
$template->assign('koinfo', $tmpk['bezeichnung']);
$kot = $GLOBALS['mysql']->query_array("SELECT * FROM konfessionen ORDER by id");
$template->assign('kotyp', $kot);
//---------------------------
// echo "<pre>"; print_r($ttyp); echo "</pre>";
$template->assign('content', 'tpl/ajax/ma_edit.tpl');
?>