PHP8
This commit is contained in:
parent
f54886c481
commit
d8dceb870b
@ -91,7 +91,7 @@ echo "
|
||||
echo "
|
||||
<option value=\"".$row[0]."\">$row[nachname], $row[vorname] ($row[ag]/$row[jahrgang])
|
||||
";
|
||||
IF ($row['durchgefallen'] == "Y")
|
||||
IF (isset($row['durchgefallen']) AND $row['durchgefallen'] == "Y")
|
||||
echo " *"; ## kann nicht passieren, durch select :-)
|
||||
|
||||
echo "
|
||||
@ -167,8 +167,12 @@ echo "
|
||||
</html>";
|
||||
break;
|
||||
case "rechte1":
|
||||
|
||||
if(isset($_POST['stud_uid'])){
|
||||
$deluid = $_POST['stud_uid'];
|
||||
}else{
|
||||
echo "<meta http-equiv=\"refresh\" content=\"0; URL=?\">";
|
||||
exit;
|
||||
}
|
||||
|
||||
setcookie("ck_studuid", "");
|
||||
setcookie("ck_studuid", $deluid);
|
||||
|
@ -184,8 +184,8 @@ echo"
|
||||
<img height=\"40\" src=\"images/blank.gif\" width=\"22\"></td>
|
||||
<td nowrap=\"nowrap\" align=\"left\" width=\"98%\" background=\"images/box_top.gif\" valign=\"top\">
|
||||
<img height=\"10\" src=\"images/blank.gif\" width=\"1\"><br>
|
||||
<font class=\"hd\">Administratorrechte bearbeiten</font><br>
|
||||
<font class=\"sh\">STRG-Taste für Mehrfachauswahl - $_POST[admre]</font><br>
|
||||
<font class=\"hd\">Administratorrechte bearbeiten: $_POST[stud_uid]</font><br>
|
||||
<font class=\"sh\">STRG-Taste für Mehrfachauswahl</font><br>
|
||||
<img height=\"5\" src=\"images/blank.gif\" width=\"1\"></font></td>
|
||||
<td nowrap=\"nowrap\" align=\"right\" width=\"1%\" background=\"images/box_e2.gif\">
|
||||
<img height=\"40\" src=\"images/blank.gif\" width=\"22\"></td>
|
||||
@ -228,7 +228,7 @@ echo"
|
||||
|
||||
$admin = $bearb_adm->fetch_array();
|
||||
|
||||
echo "<option value=\"".$row[aesp_admin_rolle]."\""; if($admin[0] == 1){echo "selected";} echo">".$row['Beschreibung']." </option>\n";
|
||||
echo "<option value=\"".$row['aesp_admin_rolle']."\""; if(isset($admin[0]) AND $admin[0] == 1){echo "selected";} echo">".$row['Beschreibung']." </option>\n";
|
||||
}
|
||||
echo "</select>
|
||||
</td>
|
||||
@ -285,7 +285,7 @@ $db = dbconnect();
|
||||
$ck_admre = $_COOKIE["ck_uid"];
|
||||
|
||||
$sql_del = $db->query("DELETE FROM aesp_admin_rechte_zuord WHERE uid = '$ck_admre'");
|
||||
|
||||
if(isset($_POST['admre'])){
|
||||
$admin_re = $_POST['admre'];
|
||||
for ($i=0;$i<sizeof($admin_re);$i++) {
|
||||
$sql = $db->query ("INSERT INTO aesp_admin_rechte_zuord (aesp_admin_rolle, uid)
|
||||
@ -293,7 +293,7 @@ for ($i=0;$i<sizeof($admin_re);$i++) {
|
||||
('$admin_re[$i]', '$ck_admre')
|
||||
");
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
555
fragebogen.php
555
fragebogen.php
@ -26,7 +26,9 @@ $uid1=$_COOKIE["uid1"];
|
||||
FROM aesp_bewerbung
|
||||
WHERE uid='$uid1'");
|
||||
$row3 = $result3->fetch_array();
|
||||
if(isset($row3['land'])){
|
||||
setcookie("ck_lid",$row3['land']);
|
||||
}
|
||||
echo "
|
||||
<html>
|
||||
|
||||
@ -163,12 +165,12 @@ function fetch_select(){
|
||||
Studiengang </td>
|
||||
<td width='82%' colspan='3' style='border-right-style: solid; border-right-width: 2px'>
|
||||
<p style='margin-left: 3px; margin-right: 3px'>
|
||||
<input type='radio' value='PMGT' name='studiengang' "; if($row_einver['studiengang'] == 'PMGT'){ echo " checked "; } echo">Public Management<br>
|
||||
<input type='radio' value='AFV' name='studiengang' "; if($row_einver['studiengang'] == 'AFV'){ echo " checked "; } echo">Allgemeine Finanzverwaltung<br>
|
||||
<input type='radio' value='RV' name='studiengang' "; if($row_einver['studiengang'] == 'RV'){ echo " checked "; } echo">Rentenversicherung<br>
|
||||
<input type='radio' value='DVM' name='studiengang' "; if($row_einver['studiengang'] == 'DVM'){ echo " checked "; } echo">DVM<br>
|
||||
<input type='radio' value='MEPA' name='studiengang' "; if($row_einver['studiengang'] == 'MEPA'){ echo " checked "; } echo">MEPA<br>
|
||||
<input type='radio' value='S' name='studiengang' "; if($row_einver['studiengang'] == "S"){ echo " checked "; } echo">Sonstiges
|
||||
<input type='radio' value='PMGT' name='studiengang' "; if(isset($row_einver['studiengang']) AND $row_einver['studiengang'] == 'PMGT'){ echo " checked "; } echo">Public Management<br>
|
||||
<input type='radio' value='AFV' name='studiengang' "; if(isset($row_einver['studiengang']) AND $row_einver['studiengang'] == 'AFV'){ echo " checked "; } echo">Allgemeine Finanzverwaltung<br>
|
||||
<input type='radio' value='RV' name='studiengang' "; if(isset($row_einver['studiengang']) AND $row_einver['studiengang'] == 'RV'){ echo " checked "; } echo">Rentenversicherung<br>
|
||||
<input type='radio' value='DVM' name='studiengang' "; if(isset($row_einver['studiengang']) AND $row_einver['studiengang'] == 'DVM'){ echo " checked "; } echo">DVM<br>
|
||||
<input type='radio' value='MEPA' name='studiengang' "; if(isset($row_einver['studiengang']) AND $row_einver['studiengang'] == 'MEPA'){ echo " checked "; } echo">MEPA<br>
|
||||
<input type='radio' value='S' name='studiengang' "; if(isset($row_einver['studiengang']) AND $row_einver['studiengang'] == "S"){ echo " checked "; } echo">Sonstiges
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
@ -187,7 +189,7 @@ function fetch_select(){
|
||||
</td>
|
||||
<td width='82%' colspan='3' style='border-right-style: solid; border-right-width: 2px'>
|
||||
<p style='margin-left: 3px; margin-right: 3px'>
|
||||
<input type='checkbox' name='eiver_rueckfr' value=\"Y\""; if($row_einver['einverst'] == 'Y'){ echo " checked "; } echo">
|
||||
<input type='checkbox' name='eiver_rueckfr' value=\"Y\""; if(isset($row_einver['einverst']) AND $row_einver['einverst'] == 'Y'){ echo " checked "; } echo">
|
||||
Ich bin damit einverstanden, dass meine <u>Emailadresse</u> für eventuelle Nachfragen veröffentlicht wird.
|
||||
</td>
|
||||
</tr>
|
||||
@ -227,7 +229,7 @@ function fetch_select(){
|
||||
<option value=''>Select</option>";
|
||||
#echo "<option value='%'";if($row3[kontinent] == '%'){echo " selected";} echo">Alle </option>\n";
|
||||
while ($row2 = $result2->fetch_array()){
|
||||
echo "<option value=\"$row2[kid]\"";if($row2['kid'] == $row3['kontinent']){echo " selected";} echo">".$row2['kontinent']." </option>\n";
|
||||
echo "<option value=\"$row2[kid]\"";if(isset($row2['kid']) AND isset($row3['kontinent']) AND $row2['kid'] == $row3['kontinent']){echo " selected";} echo">".$row2['kontinent']." </option>\n";
|
||||
}
|
||||
echo"
|
||||
|
||||
@ -323,6 +325,95 @@ function fetch_select(){
|
||||
FROM aesp_allgemein
|
||||
WHERE uid='$uid1'");
|
||||
$row = $result->fetch_array();
|
||||
if(isset($row['von_tag'])){
|
||||
$von_tag = $row['von_tag'];
|
||||
}else{
|
||||
$von_tag = '';
|
||||
}
|
||||
|
||||
if(isset($row['von_mon'])){
|
||||
$von_mon = $row['von_mon'];
|
||||
}else{
|
||||
$von_mon = '';
|
||||
}
|
||||
|
||||
if(isset($row['von_jahr'])){
|
||||
$von_jahr = $row['von_jahr'];
|
||||
}else{
|
||||
$von_jahr = '';
|
||||
}
|
||||
|
||||
if(isset($row['bis_tag'])){
|
||||
$bis_tag = $row['bis_tag'];
|
||||
}else{
|
||||
$bis_tag = '';
|
||||
}
|
||||
|
||||
if(isset($row['bis_mon'])){
|
||||
$bis_mon = $row['bis_mon'];
|
||||
}else{
|
||||
$bis_mon = '';
|
||||
}
|
||||
|
||||
if(isset($row['bis_jahr'])){
|
||||
$bis_jahr = $row['bis_jahr'];
|
||||
}else{
|
||||
$bis_jahr = '';
|
||||
}
|
||||
|
||||
if(isset($row['abteilung_genau'])){
|
||||
$abteilung_genau = $row['abteilung_genau'];
|
||||
}else{
|
||||
$abteilung_genau = '';
|
||||
}
|
||||
|
||||
if(isset($row['platz_gefunden'])){
|
||||
$platz_gefunden = $row['platz_gefunden'];
|
||||
}else{
|
||||
$platz_gefunden = '';
|
||||
}
|
||||
|
||||
if(isset($row['visum'])){
|
||||
$visum = $row['visum'];
|
||||
}else{
|
||||
$visum = '';
|
||||
}
|
||||
|
||||
if(isset($row['transport'])){
|
||||
$transport = $row['transport'];
|
||||
}else{
|
||||
$transport = '';
|
||||
}
|
||||
|
||||
if(isset($row['beginn_vorbereitung'])){
|
||||
$beginn_vorbereitung = $row['beginn_vorbereitung'];
|
||||
}else{
|
||||
$beginn_vorbereitung = '';
|
||||
}
|
||||
|
||||
if(isset($row['erasmus'])){
|
||||
$erasmus = $row['erasmus'];
|
||||
}else{
|
||||
$erasmus = '';
|
||||
}
|
||||
|
||||
if(isset($row['trennungsgeld'])){
|
||||
$trennungsgeld = $row['trennungsgeld'];
|
||||
}else{
|
||||
$trennungsgeld = '';
|
||||
}
|
||||
|
||||
if(isset($row['modul'])){
|
||||
$modul = $row['modul'];
|
||||
}else{
|
||||
$modul = '';
|
||||
}
|
||||
|
||||
if(isset($row['aufgaben'])){
|
||||
$aufgaben = $row['aufgaben'];
|
||||
}else{
|
||||
$aufgaben = '';
|
||||
}
|
||||
|
||||
echo "
|
||||
<table border='0' width='80%' id='table2' style='border-collapse: collapse' bgcolor='#EAEAEA'>
|
||||
@ -340,7 +431,7 @@ function fetch_select(){
|
||||
<td width='82%' style='border-right-style: solid; border-right-width: 2px'>
|
||||
<p style='margin-left: 3px; margin-right: 3px'>
|
||||
<br>
|
||||
<input type='text' name='von_tag' value=\"$row[von_tag]\" size='2'>.<input type='text' name='von_monat' value=\"$row[von_mon]\" size='2'>.<input type='text' name='von_jahr' value=\"$row[von_jahr]\" size='4'> bis <input type='text' name='bis_tag' value=\"$row[bis_tag]\" size='2'>.<input type='text' name='bis_monat' value=\"$row[bis_mon]\" size='2'>.<input type='text' name='bis_jahr' value=\"$row[bis_jahr]\" size='4'>
|
||||
<input type='text' name='von_tag' value=\"$von_tag\" size='2'>.<input type='text' name='von_monat' value=\"$von_mon\" size='2'>.<input type='text' name='von_jahr' value=\"$von_jahr\" size='4'> bis <input type='text' name='bis_tag' value=\"$bis_tag\" size='2'>.<input type='text' name='bis_monat' value=\"$bis_mon\" size='2'>.<input type='text' name='bis_jahr' value=\"$bis_jahr\" size='4'>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
@ -350,7 +441,7 @@ function fetch_select(){
|
||||
Genaue Bezeichnung der Abteilung </td>
|
||||
<td width='82%' style='border-right-style: solid; border-right-width: 2px'>
|
||||
<p style='margin-left: 3px; margin-right: 3px'>
|
||||
<input type='text' name='abteilung_genau' value=\"$row[abteilung_genau]\" size='90'></p>
|
||||
<input type='text' name='abteilung_genau' value=\"$abteilung_genau\" size='90'></p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
@ -361,7 +452,7 @@ function fetch_select(){
|
||||
<tr>
|
||||
<td width='99%' style='border-left-style: solid; border-left-width: 2px; border-right-style:solid; border-right-width:2px' colspan='2'>
|
||||
<p style='margin-left: 3px; margin-right: 3px'>
|
||||
<input type='text' name='platz_gefunden' value=\"$row[platz_gefunden]\" size='118'></td>
|
||||
<input type='text' name='platz_gefunden' value=\"$platz_gefunden\" size='118'></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width='99%' style='border-left-style: solid; border-left-width: 2px; border-right-style:solid; border-right-width:2px' height='27' colspan='2'>
|
||||
@ -376,7 +467,7 @@ function fetch_select(){
|
||||
</td>
|
||||
<td width='82%' style='border-right-style: solid; border-right-width: 2px'>
|
||||
<p style='margin-left: 3px; margin-right: 3px'>
|
||||
<input type='text' name='visum' value=\"$row[visum]\" size='90'></td>
|
||||
<input type='text' name='visum' value=\"$visum\" size='90'></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width='17%' style='border-left-style: solid; border-left-width: 2px'>
|
||||
@ -384,7 +475,7 @@ function fetch_select(){
|
||||
- Transport </td>
|
||||
<td width='82%' style='border-right-style: solid; border-right-width: 2px'>
|
||||
<p style='margin-left: 3px; margin-right: 3px'>
|
||||
<input type='text' name='transport' value=\"$row[transport]\" size='90'></td>
|
||||
<input type='text' name='transport' value=\"$transport\" size='90'></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width='99%' style='border-left-style: solid; border-left-width: 2px; border-right-style:solid; border-right-width:2px' height='27' colspan='2'>
|
||||
@ -395,7 +486,7 @@ function fetch_select(){
|
||||
<tr>
|
||||
<td width='99%' style='border-left-style: solid; border-left-width: 2px; border-right-style:solid; border-right-width:2px' colspan='2'>
|
||||
<p style='margin-left: 3px; margin-right: 3px'>
|
||||
<input type='text' name='vorbereitungsbeginn' value=\"$row[beginn_vorbereitung]\" size='118'></td>
|
||||
<input type='text' name='vorbereitungsbeginn' value=\"$beginn_vorbereitung\" size='118'></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width='99%' style='border-left-style: solid; border-left-width: 2px; border-right-style:solid; border-right-width:2px' height='27' colspan='2'>
|
||||
@ -407,7 +498,7 @@ function fetch_select(){
|
||||
<tr>
|
||||
<td width='99%' style='border-left-style: solid; border-left-width: 2px; border-right-style:solid; border-right-width:2px' colspan='2'>
|
||||
<p style='margin-left: 3px; margin-right: 3px'>
|
||||
<input type='text' name='erasmus' value=\"$row[erasmus]\" size='118'></td>
|
||||
<input type='text' name='erasmus' value=\"$erasmus\" size='118'></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<tr>
|
||||
@ -421,8 +512,7 @@ function fetch_select(){
|
||||
<tr>
|
||||
<td width='99%' style='border-left-style: solid; border-left-width: 2px; border-right-style:solid; border-right-width:2px' colspan='2'>
|
||||
<p style='margin-left: 3px; margin-right: 3px'>
|
||||
<!-- <input type='text' name='auslandszuschlag' value=\"$row[auslandskostenzuschlag]\" size='118'> -->
|
||||
<input type='text' name='trennungsgeld' value=\"$row[trennungsgeld]\" size='118'>
|
||||
<input type='text' name='trennungsgeld' value=\"$trennungsgeld\" size='118'>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
@ -436,11 +526,11 @@ function fetch_select(){
|
||||
<td width='99%' style='border-left-style: solid; border-left-width: 2px; border-right-style:solid; border-right-width:2px' colspan='2'>
|
||||
<p style='margin-left: 3px; margin-right: 3px' align='left'>
|
||||
<!-- bis 22.01.2024 name='bereich' -->
|
||||
<input type='radio' value='OPI' name='modul' "; if($row['modul'] == 'OPI'){ echo " checked "; } echo">Organisation, Personal, Informationsverarbeitung,<br>
|
||||
<input type='radio' value='OV' name='modul' "; if($row['modul'] == 'OV'){ echo " checked "; } echo">Ordnungsverwaltung<br>
|
||||
<input type='radio' value='LV' name='modul' "; if($row['modul'] == 'LV'){ echo " checked "; } echo">Leistungsverwaltung<br>
|
||||
<input type='radio' value='WFB' name='modul' "; if($row['modul'] == 'WFB'){ echo " checked "; } echo">Wirtschaft und Finanzen, öffentliche Betriebe<br>
|
||||
<input type='radio' value='KFS' name='modul' "; if($row['modul'] == 'KFS'){ echo " checked "; } echo">Kommunalpolitik, Führung im öffentlichen Sektor
|
||||
<input type='radio' value='OPI' name='modul' "; if($modul == 'OPI'){ echo " checked "; } echo">Organisation, Personal, Informationsverarbeitung,<br>
|
||||
<input type='radio' value='OV' name='modul' "; if($modul == 'OV'){ echo " checked "; } echo">Ordnungsverwaltung<br>
|
||||
<input type='radio' value='LV' name='modul' "; if($modul == 'LV'){ echo " checked "; } echo">Leistungsverwaltung<br>
|
||||
<input type='radio' value='WFB' name='modul' "; if($modul == 'WFB'){ echo " checked "; } echo">Wirtschaft und Finanzen, öffentliche Betriebe<br>
|
||||
<input type='radio' value='KFS' name='modul' "; if($modul == 'KFS'){ echo " checked "; } echo">Kommunalpolitik, Führung im öffentlichen Sektor
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
@ -453,7 +543,7 @@ function fetch_select(){
|
||||
<tr>
|
||||
<td width='99%' style='border-left-style: solid; border-left-width: 2px; border-right-style:solid; border-right-width:2px' colspan='2'>
|
||||
<p style='margin-left: 3px; margin-right: 3px'>
|
||||
<textarea rows='3' name='aufgaben' cols='88'>$row[aufgaben]</textarea></td>
|
||||
<textarea rows='3' name='aufgaben' cols='88'>$aufgaben</textarea></td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
@ -475,6 +565,24 @@ function fetch_select(){
|
||||
FROM aesp_unterkunft
|
||||
WHERE uid='$uid1'");
|
||||
$row = $result->fetch_array();
|
||||
|
||||
if(isset($row['wo_gefunden'])){
|
||||
$wo_gefunden = $row['wo_gefunden'];
|
||||
}else{
|
||||
$wo_gefunden = '';
|
||||
}
|
||||
|
||||
if(isset($row['ag_hilfe'])){
|
||||
$ag_hilfe = $row['ag_hilfe'];
|
||||
}else{
|
||||
$ag_hilfe = '';
|
||||
}
|
||||
|
||||
if(isset($row['kosten'])){
|
||||
$kosten = $row['kosten'];
|
||||
}else{
|
||||
$kosten = '';
|
||||
}
|
||||
echo"
|
||||
<table border='0' width='80%' id='table3' style='border-collapse: collapse' bgcolor='#EAEAEA'>
|
||||
<tr>
|
||||
@ -491,7 +599,7 @@ function fetch_select(){
|
||||
<tr>
|
||||
<td width='99%' style='border-left-style: solid; border-left-width: 2px; border-right-style:solid; border-right-width:2px' colspan='2'>
|
||||
<p style='margin-left: 3px; margin-right: 3px'>
|
||||
<textarea rows='2' name='wo_gefunden' cols='88'>$row[wo_gefunden]</textarea></td>
|
||||
<textarea rows='2' name='wo_gefunden' cols='88'>$wo_gefunden</textarea></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width='99%' style='border-left-style: solid; border-left-width: 2px; border-right-style:solid; border-right-width:2px' height='27' colspan='2'>
|
||||
@ -504,7 +612,7 @@ function fetch_select(){
|
||||
<tr>
|
||||
<td width='99%' style='border-left-style: solid; border-left-width: 2px; border-right-style:solid; border-right-width:2px' colspan='2'>
|
||||
<p style='margin-left: 3px; margin-right: 3px'>
|
||||
<input type='text' name='ag_hilfe' value=\"$row[ag_hilfe]\" size='118'></td>
|
||||
<input type='text' name='ag_hilfe' value=\"$ag_hilfe\" size='118'></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width='99%' style='border-left-style: solid; border-left-width: 2px; border-right-style:solid; border-right-width:2px' height='27' colspan='2'>
|
||||
@ -514,7 +622,7 @@ function fetch_select(){
|
||||
<tr>
|
||||
<td width='99%' style='border-left-style: solid; border-left-width: 2px; border-right-style:solid; border-right-width:2px' colspan='2'>
|
||||
<p style='margin-left: 3px; margin-right: 3px'>
|
||||
<input type='text' name='kosten' value=\"$row[kosten]\" size='118'></td>
|
||||
<input type='text' name='kosten' value=\"$kosten\" size='118'></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width='17%' style='border-left-style: solid; border-left-width: 2px; border-bottom-style: solid; border-bottom-width: 2px'>
|
||||
@ -539,6 +647,12 @@ function fetch_select(){
|
||||
FROM aesp_bewertung
|
||||
WHERE uid='$uid1'");
|
||||
$row = $result->fetch_array();
|
||||
if(isset($row['schwierigkeiten'])){
|
||||
$schwierigkeiten = $row['schwierigkeiten'];
|
||||
}else{
|
||||
$schwierigkeiten = '';
|
||||
}
|
||||
|
||||
echo"
|
||||
<table border='0' width='80%' id='table4' style='border-collapse: collapse' bgcolor='#EAEAEA'>
|
||||
<tr>
|
||||
@ -561,16 +675,16 @@ function fetch_select(){
|
||||
sehr gut in die tägliche Arbeit mit eingebunden </td>
|
||||
<td width='56%' style='border-right-style: solid; border-right-width: 2px'>
|
||||
|
||||
<input type='radio' name='einbindung' value='1'"; if($row['einbindung'] == '1'){ echo " checked "; } echo">1
|
||||
<input type='radio' name='einbindung' value='2'"; if($row['einbindung'] == '2'){ echo " checked "; } echo">2
|
||||
<input type='radio' name='einbindung' value='3'"; if($row['einbindung'] == '3'){ echo " checked "; } echo">3
|
||||
<input type='radio' name='einbindung' value='4'"; if($row['einbindung'] == '4'){ echo " checked "; } echo">4
|
||||
<input type='radio' name='einbindung' value='5'"; if($row['einbindung'] == '5'){ echo " checked "; } echo">5
|
||||
<input type='radio' name='einbindung' value='6'"; if($row['einbindung'] == '6'){ echo " checked "; } echo">6
|
||||
<input type='radio' name='einbindung' value='7'"; if($row['einbindung'] == '7'){ echo " checked "; } echo">7
|
||||
<input type='radio' name='einbindung' value='8'"; if($row['einbindung'] == '8'){ echo " checked "; } echo">8
|
||||
<input type='radio' name='einbindung' value='9'"; if($row['einbindung'] == '9'){ echo " checked "; } echo">9
|
||||
<input type='radio' name='einbindung' value='10'"; if($row['einbindung'] == '10'){ echo " checked "; } echo">10
|
||||
<input type='radio' name='einbindung' value='1'"; if(isset($row['einbindung']) AND $row['einbindung'] == '1'){ echo " checked "; } echo">1
|
||||
<input type='radio' name='einbindung' value='2'"; if(isset($row['einbindung']) AND $row['einbindung'] == '2'){ echo " checked "; } echo">2
|
||||
<input type='radio' name='einbindung' value='3'"; if(isset($row['einbindung']) AND $row['einbindung'] == '3'){ echo " checked "; } echo">3
|
||||
<input type='radio' name='einbindung' value='4'"; if(isset($row['einbindung']) AND $row['einbindung'] == '4'){ echo " checked "; } echo">4
|
||||
<input type='radio' name='einbindung' value='5'"; if(isset($row['einbindung']) AND $row['einbindung'] == '5'){ echo " checked "; } echo">5
|
||||
<input type='radio' name='einbindung' value='6'"; if(isset($row['einbindung']) AND $row['einbindung'] == '6'){ echo " checked "; } echo">6
|
||||
<input type='radio' name='einbindung' value='7'"; if(isset($row['einbindung']) AND $row['einbindung'] == '7'){ echo " checked "; } echo">7
|
||||
<input type='radio' name='einbindung' value='8'"; if(isset($row['einbindung']) AND $row['einbindung'] == '8'){ echo " checked "; } echo">8
|
||||
<input type='radio' name='einbindung' value='9'"; if(isset($row['einbindung']) AND $row['einbindung'] == '9'){ echo " checked "; } echo">9
|
||||
<input type='radio' name='einbindung' value='10'"; if(isset($row['einbindung']) AND $row['einbindung'] == '10'){ echo " checked "; } echo">10
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
@ -581,16 +695,16 @@ function fetch_select(){
|
||||
mich auch unter den Kollegen gut aufgenommen </td>
|
||||
<td width='56%' style='border-right-style: solid; border-right-width: 2px'>
|
||||
|
||||
<input type='radio' name='aufnahme' value='1'"; if($row['aufnahme'] == '1'){ echo " checked "; } echo">1
|
||||
<input type='radio' name='aufnahme' value='2'"; if($row['aufnahme'] == '2'){ echo " checked "; } echo">2
|
||||
<input type='radio' name='aufnahme' value='3'"; if($row['aufnahme'] == '3'){ echo " checked "; } echo">3
|
||||
<input type='radio' name='aufnahme' value='4'"; if($row['aufnahme'] == '4'){ echo " checked "; } echo">4
|
||||
<input type='radio' name='aufnahme' value='5'"; if($row['aufnahme'] == '5'){ echo " checked "; } echo">5
|
||||
<input type='radio' name='aufnahme' value='6'"; if($row['aufnahme'] == '6'){ echo " checked "; } echo">6
|
||||
<input type='radio' name='aufnahme' value='7'"; if($row['aufnahme'] == '7'){ echo " checked "; } echo">7
|
||||
<input type='radio' name='aufnahme' value='8'"; if($row['aufnahme'] == '8'){ echo " checked "; } echo">8
|
||||
<input type='radio' name='aufnahme' value='9'"; if($row['aufnahme'] == '9'){ echo " checked "; } echo">9
|
||||
<input type='radio' name='aufnahme' value='10'"; if($row['aufnahme'] == '10'){ echo " checked "; } echo">10
|
||||
<input type='radio' name='aufnahme' value='1'"; if(isset($row['aufnahme']) AND $row['aufnahme'] == '1'){ echo " checked "; } echo">1
|
||||
<input type='radio' name='aufnahme' value='2'"; if(isset($row['aufnahme']) AND $row['aufnahme'] == '2'){ echo " checked "; } echo">2
|
||||
<input type='radio' name='aufnahme' value='3'"; if(isset($row['aufnahme']) AND $row['aufnahme'] == '3'){ echo " checked "; } echo">3
|
||||
<input type='radio' name='aufnahme' value='4'"; if(isset($row['aufnahme']) AND $row['aufnahme'] == '4'){ echo " checked "; } echo">4
|
||||
<input type='radio' name='aufnahme' value='5'"; if(isset($row['aufnahme']) AND $row['aufnahme'] == '5'){ echo " checked "; } echo">5
|
||||
<input type='radio' name='aufnahme' value='6'"; if(isset($row['aufnahme']) AND $row['aufnahme'] == '6'){ echo " checked "; } echo">6
|
||||
<input type='radio' name='aufnahme' value='7'"; if(isset($row['aufnahme']) AND $row['aufnahme'] == '7'){ echo " checked "; } echo">7
|
||||
<input type='radio' name='aufnahme' value='8'"; if(isset($row['aufnahme']) AND $row['aufnahme'] == '8'){ echo " checked "; } echo">8
|
||||
<input type='radio' name='aufnahme' value='9'"; if(isset($row['aufnahme']) AND $row['aufnahme'] == '9'){ echo " checked "; } echo">9
|
||||
<input type='radio' name='aufnahme' value='10'"; if(isset($row['aufnahme']) AND $row['aufnahme'] == '10'){ echo " checked "; } echo">10
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
@ -601,16 +715,16 @@ function fetch_select(){
|
||||
gestellten Ausgaben waren interessant </td>
|
||||
<td width='56%' style='border-right-style: solid; border-right-width: 2px'>
|
||||
|
||||
<input type='radio' name='interessant' value='1'"; if($row['interessant'] == '1'){ echo " checked "; } echo">1
|
||||
<input type='radio' name='interessant' value='2'"; if($row['interessant'] == '2'){ echo " checked "; } echo">2
|
||||
<input type='radio' name='interessant' value='3'"; if($row['interessant'] == '3'){ echo " checked "; } echo">3
|
||||
<input type='radio' name='interessant' value='4'"; if($row['interessant'] == '4'){ echo " checked "; } echo">4
|
||||
<input type='radio' name='interessant' value='5'"; if($row['interessant'] == '5'){ echo " checked "; } echo">5
|
||||
<input type='radio' name='interessant' value='6'"; if($row['interessant'] == '6'){ echo " checked "; } echo">6
|
||||
<input type='radio' name='interessant' value='7'"; if($row['interessant'] == '7'){ echo " checked "; } echo">7
|
||||
<input type='radio' name='interessant' value='8'"; if($row['interessant'] == '8'){ echo " checked "; } echo">8
|
||||
<input type='radio' name='interessant' value='9'"; if($row['interessant'] == '9'){ echo " checked "; } echo">9
|
||||
<input type='radio' name='interessant' value='10'"; if($row['interessant'] == '10'){ echo " checked "; } echo">10
|
||||
<input type='radio' name='interessant' value='1'"; if(isset($row['interessant']) AND $row['interessant'] == '1'){ echo " checked "; } echo">1
|
||||
<input type='radio' name='interessant' value='2'"; if(isset($row['interessant']) AND $row['interessant'] == '2'){ echo " checked "; } echo">2
|
||||
<input type='radio' name='interessant' value='3'"; if(isset($row['interessant']) AND $row['interessant'] == '3'){ echo " checked "; } echo">3
|
||||
<input type='radio' name='interessant' value='4'"; if(isset($row['interessant']) AND $row['interessant'] == '4'){ echo " checked "; } echo">4
|
||||
<input type='radio' name='interessant' value='5'"; if(isset($row['interessant']) AND $row['interessant'] == '5'){ echo " checked "; } echo">5
|
||||
<input type='radio' name='interessant' value='6'"; if(isset($row['interessant']) AND $row['interessant'] == '6'){ echo " checked "; } echo">6
|
||||
<input type='radio' name='interessant' value='7'"; if(isset($row['interessant']) AND $row['interessant'] == '7'){ echo " checked "; } echo">7
|
||||
<input type='radio' name='interessant' value='8'"; if(isset($row['interessant']) AND $row['interessant'] == '8'){ echo " checked "; } echo">8
|
||||
<input type='radio' name='interessant' value='9'"; if(isset($row['interessant']) AND $row['interessant'] == '9'){ echo " checked "; } echo">9
|
||||
<input type='radio' name='interessant' value='10'"; if(isset($row['interessant']) AND $row['interessant'] == '10'){ echo " checked "; } echo">10
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
@ -621,16 +735,16 @@ function fetch_select(){
|
||||
mich gefordert </td>
|
||||
<td width='56%' style='border-right-style: solid; border-right-width: 2px'>
|
||||
|
||||
<input type='radio' name='gefordert' value='1'"; if($row['gefordert'] == '1'){ echo " checked "; } echo">1
|
||||
<input type='radio' name='gefordert' value='2'"; if($row['gefordert'] == '2'){ echo " checked "; } echo">2
|
||||
<input type='radio' name='gefordert' value='3'"; if($row['gefordert'] == '3'){ echo " checked "; } echo">3
|
||||
<input type='radio' name='gefordert' value='4'"; if($row['gefordert'] == '4'){ echo " checked "; } echo">4
|
||||
<input type='radio' name='gefordert' value='5'"; if($row['gefordert'] == '5'){ echo " checked "; } echo">5
|
||||
<input type='radio' name='gefordert' value='6'"; if($row['gefordert'] == '6'){ echo " checked "; } echo">6
|
||||
<input type='radio' name='gefordert' value='7'"; if($row['gefordert'] == '7'){ echo " checked "; } echo">7
|
||||
<input type='radio' name='gefordert' value='8'"; if($row['gefordert'] == '8'){ echo " checked "; } echo">8
|
||||
<input type='radio' name='gefordert' value='9'"; if($row['gefordert'] == '9'){ echo " checked "; } echo">9
|
||||
<input type='radio' name='gefordert' value='10'"; if($row['gefordert'] == '10'){ echo " checked "; } echo">10
|
||||
<input type='radio' name='gefordert' value='1'"; if(isset($row['gefordert']) AND $row['gefordert'] == '1'){ echo " checked "; } echo">1
|
||||
<input type='radio' name='gefordert' value='2'"; if(isset($row['gefordert']) AND $row['gefordert'] == '2'){ echo " checked "; } echo">2
|
||||
<input type='radio' name='gefordert' value='3'"; if(isset($row['gefordert']) AND $row['gefordert'] == '3'){ echo " checked "; } echo">3
|
||||
<input type='radio' name='gefordert' value='4'"; if(isset($row['gefordert']) AND $row['gefordert'] == '4'){ echo " checked "; } echo">4
|
||||
<input type='radio' name='gefordert' value='5'"; if(isset($row['gefordert']) AND $row['gefordert'] == '5'){ echo " checked "; } echo">5
|
||||
<input type='radio' name='gefordert' value='6'"; if(isset($row['gefordert']) AND $row['gefordert'] == '6'){ echo " checked "; } echo">6
|
||||
<input type='radio' name='gefordert' value='7'"; if(isset($row['gefordert']) AND $row['gefordert'] == '7'){ echo " checked "; } echo">7
|
||||
<input type='radio' name='gefordert' value='8'"; if(isset($row['gefordert']) AND $row['gefordert'] == '8'){ echo " checked "; } echo">8
|
||||
<input type='radio' name='gefordert' value='9'"; if(isset($row['gefordert']) AND $row['gefordert'] == '9'){ echo " checked "; } echo">9
|
||||
<input type='radio' name='gefordert' value='10'"; if(isset($row['gefordert']) AND $row['gefordert'] == '10'){ echo " checked "; } echo">10
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
@ -641,16 +755,16 @@ function fetch_select(){
|
||||
etwas dazulernen können </td>
|
||||
<td width='56%' style='border-right-style: solid; border-right-width: 2px'>
|
||||
|
||||
<input type='radio' name='dazulernen' value='1'"; if($row['dazulernen'] == '1'){ echo " checked "; } echo">1
|
||||
<input type='radio' name='dazulernen' value='2'"; if($row['dazulernen'] == '2'){ echo " checked "; } echo">2
|
||||
<input type='radio' name='dazulernen' value='3'"; if($row['dazulernen'] == '3'){ echo " checked "; } echo">3
|
||||
<input type='radio' name='dazulernen' value='4'"; if($row['dazulernen'] == '4'){ echo " checked "; } echo">4
|
||||
<input type='radio' name='dazulernen' value='5'"; if($row['dazulernen'] == '5'){ echo " checked "; } echo">5
|
||||
<input type='radio' name='dazulernen' value='6'"; if($row['dazulernen'] == '6'){ echo " checked "; } echo">6
|
||||
<input type='radio' name='dazulernen' value='7'"; if($row['dazulernen'] == '7'){ echo " checked "; } echo">7
|
||||
<input type='radio' name='dazulernen' value='8'"; if($row['dazulernen'] == '8'){ echo " checked "; } echo">8
|
||||
<input type='radio' name='dazulernen' value='9'"; if($row['dazulernen'] == '9'){ echo " checked "; } echo">9
|
||||
<input type='radio' name='dazulernen' value='10'"; if($row['dazulernen'] == '10'){ echo " checked "; } echo">10
|
||||
<input type='radio' name='dazulernen' value='1'"; if(isset($row['dazulernen']) AND $row['dazulernen'] == '1'){ echo " checked "; } echo">1
|
||||
<input type='radio' name='dazulernen' value='2'"; if(isset($row['dazulernen']) AND$row['dazulernen'] == '2'){ echo " checked "; } echo">2
|
||||
<input type='radio' name='dazulernen' value='3'"; if(isset($row['dazulernen']) AND$row['dazulernen'] == '3'){ echo " checked "; } echo">3
|
||||
<input type='radio' name='dazulernen' value='4'"; if(isset($row['dazulernen']) AND$row['dazulernen'] == '4'){ echo " checked "; } echo">4
|
||||
<input type='radio' name='dazulernen' value='5'"; if(isset($row['dazulernen']) AND$row['dazulernen'] == '5'){ echo " checked "; } echo">5
|
||||
<input type='radio' name='dazulernen' value='6'"; if(isset($row['dazulernen']) AND$row['dazulernen'] == '6'){ echo " checked "; } echo">6
|
||||
<input type='radio' name='dazulernen' value='7'"; if(isset($row['dazulernen']) AND$row['dazulernen'] == '7'){ echo " checked "; } echo">7
|
||||
<input type='radio' name='dazulernen' value='8'"; if(isset($row['dazulernen']) AND$row['dazulernen'] == '8'){ echo " checked "; } echo">8
|
||||
<input type='radio' name='dazulernen' value='9'"; if(isset($row['dazulernen']) AND$row['dazulernen'] == '9'){ echo " checked "; } echo">9
|
||||
<input type='radio' name='dazulernen' value='10'"; if(isset($row['dazulernen']) AND$row['dazulernen'] == '10'){ echo " checked "; } echo">10
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
@ -661,16 +775,16 @@ function fetch_select(){
|
||||
keinerlei Probleme mit der Sprache </td>
|
||||
<td width='56%' style='border-right-style: solid; border-right-width: 2px'>
|
||||
|
||||
<input type='radio' name='sprachprobleme' value='1'"; if($row['sprachprobleme'] == '1'){ echo " checked "; } echo">1
|
||||
<input type='radio' name='sprachprobleme' value='2'"; if($row['sprachprobleme'] == '2'){ echo " checked "; } echo">2
|
||||
<input type='radio' name='sprachprobleme' value='3'"; if($row['sprachprobleme'] == '3'){ echo " checked "; } echo">3
|
||||
<input type='radio' name='sprachprobleme' value='4'"; if($row['sprachprobleme'] == '4'){ echo " checked "; } echo">4
|
||||
<input type='radio' name='sprachprobleme' value='5'"; if($row['sprachprobleme'] == '5'){ echo " checked "; } echo">5
|
||||
<input type='radio' name='sprachprobleme' value='6'"; if($row['sprachprobleme'] == '6'){ echo " checked "; } echo">6
|
||||
<input type='radio' name='sprachprobleme' value='7'"; if($row['sprachprobleme'] == '7'){ echo " checked "; } echo">7
|
||||
<input type='radio' name='sprachprobleme' value='8'"; if($row['sprachprobleme'] == '8'){ echo " checked "; } echo">8
|
||||
<input type='radio' name='sprachprobleme' value='9'"; if($row['sprachprobleme'] == '9'){ echo " checked "; } echo">9
|
||||
<input type='radio' name='sprachprobleme' value='10'"; if($row['sprachprobleme'] == '10'){ echo " checked "; } echo">10
|
||||
<input type='radio' name='sprachprobleme' value='1'"; if(isset($row['sprachprobleme']) AND $row['sprachprobleme'] == '1'){ echo " checked "; } echo">1
|
||||
<input type='radio' name='sprachprobleme' value='2'"; if(isset($row['sprachprobleme']) AND $row['sprachprobleme'] == '2'){ echo " checked "; } echo">2
|
||||
<input type='radio' name='sprachprobleme' value='3'"; if(isset($row['sprachprobleme']) AND $row['sprachprobleme'] == '3'){ echo " checked "; } echo">3
|
||||
<input type='radio' name='sprachprobleme' value='4'"; if(isset($row['sprachprobleme']) AND $row['sprachprobleme'] == '4'){ echo " checked "; } echo">4
|
||||
<input type='radio' name='sprachprobleme' value='5'"; if(isset($row['sprachprobleme']) AND $row['sprachprobleme'] == '5'){ echo " checked "; } echo">5
|
||||
<input type='radio' name='sprachprobleme' value='6'"; if(isset($row['sprachprobleme']) AND $row['sprachprobleme'] == '6'){ echo " checked "; } echo">6
|
||||
<input type='radio' name='sprachprobleme' value='7'"; if(isset($row['sprachprobleme']) AND $row['sprachprobleme'] == '7'){ echo " checked "; } echo">7
|
||||
<input type='radio' name='sprachprobleme' value='8'"; if(isset($row['sprachprobleme']) AND $row['sprachprobleme'] == '8'){ echo " checked "; } echo">8
|
||||
<input type='radio' name='sprachprobleme' value='9'"; if(isset($row['sprachprobleme']) AND $row['sprachprobleme'] == '9'){ echo " checked "; } echo">9
|
||||
<input type='radio' name='sprachprobleme' value='10'"; if(isset($row['sprachprobleme']) AND $row['sprachprobleme'] == '10'){ echo " checked "; } echo">10
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
@ -680,16 +794,16 @@ function fetch_select(){
|
||||
Ich konnte viele gute Erfahrungen sammeln </td>
|
||||
<td width='56%' style='border-right-style: solid; border-right-width: 2px'>
|
||||
|
||||
<input type='radio' name='erfahrungen' value='1'"; if($row['erfahrungen'] == '1'){ echo " checked "; } echo">1
|
||||
<input type='radio' name='erfahrungen' value='2'"; if($row['erfahrungen'] == '2'){ echo " checked "; } echo">2
|
||||
<input type='radio' name='erfahrungen' value='3'"; if($row['erfahrungen'] == '3'){ echo " checked "; } echo">3
|
||||
<input type='radio' name='erfahrungen' value='4'"; if($row['erfahrungen'] == '4'){ echo " checked "; } echo">4
|
||||
<input type='radio' name='erfahrungen' value='5'"; if($row['erfahrungen'] == '5'){ echo " checked "; } echo">5
|
||||
<input type='radio' name='erfahrungen' value='6'"; if($row['erfahrungen'] == '6'){ echo " checked "; } echo">6
|
||||
<input type='radio' name='erfahrungen' value='7'"; if($row['erfahrungen'] == '7'){ echo " checked "; } echo">7
|
||||
<input type='radio' name='erfahrungen' value='8'"; if($row['erfahrungen'] == '8'){ echo " checked "; } echo">8
|
||||
<input type='radio' name='erfahrungen' value='9'"; if($row['erfahrungen'] == '9'){ echo " checked "; } echo">9
|
||||
<input type='radio' name='erfahrungen' value='10'"; if($row['erfahrungen'] == '10'){ echo " checked "; } echo">10
|
||||
<input type='radio' name='erfahrungen' value='1'"; if(isset($row['erfahrungen']) AND $row['erfahrungen'] == '1'){ echo " checked "; } echo">1
|
||||
<input type='radio' name='erfahrungen' value='2'"; if(isset($row['erfahrungen']) AND $row['erfahrungen'] == '2'){ echo " checked "; } echo">2
|
||||
<input type='radio' name='erfahrungen' value='3'"; if(isset($row['erfahrungen']) AND $row['erfahrungen'] == '3'){ echo " checked "; } echo">3
|
||||
<input type='radio' name='erfahrungen' value='4'"; if(isset($row['erfahrungen']) AND $row['erfahrungen'] == '4'){ echo " checked "; } echo">4
|
||||
<input type='radio' name='erfahrungen' value='5'"; if(isset($row['erfahrungen']) AND $row['erfahrungen'] == '5'){ echo " checked "; } echo">5
|
||||
<input type='radio' name='erfahrungen' value='6'"; if(isset($row['erfahrungen']) AND $row['erfahrungen'] == '6'){ echo " checked "; } echo">6
|
||||
<input type='radio' name='erfahrungen' value='7'"; if(isset($row['erfahrungen']) AND $row['erfahrungen'] == '7'){ echo " checked "; } echo">7
|
||||
<input type='radio' name='erfahrungen' value='8'"; if(isset($row['erfahrungen']) AND $row['erfahrungen'] == '8'){ echo " checked "; } echo">8
|
||||
<input type='radio' name='erfahrungen' value='9'"; if(isset($row['erfahrungen']) AND $row['erfahrungen'] == '9'){ echo " checked "; } echo">9
|
||||
<input type='radio' name='erfahrungen' value='10'"; if(isset($row['erfahrungen']) AND $row['erfahrungen'] == '10'){ echo " checked "; } echo">10
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
@ -701,7 +815,7 @@ function fetch_select(){
|
||||
Schwierigkeiten </td>
|
||||
<td width='56%' style='border-right-style: solid; border-right-width: 2px' height='25'>
|
||||
<br>
|
||||
<input type='text' name='schwierigkeiten' value=\"$row[schwierigkeiten]\" size='65'></td>
|
||||
<input type='text' name='schwierigkeiten' value=\"$schwierigkeiten\" size='65'></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width='43%' style='border-left-style: solid; border-left-width: 2px; border-bottom-style: solid; border-bottom-width: 2px'>
|
||||
@ -723,6 +837,30 @@ function fetch_select(){
|
||||
FROM aesp_freizeit
|
||||
WHERE uid='$uid1'");
|
||||
$row = $result->fetch_array();
|
||||
|
||||
if(isset($row['lebenshaltungskosten'])){
|
||||
$lebenshaltungskosten = $row['lebenshaltungskosten'];
|
||||
}else{
|
||||
$lebenshaltungskosten = '';
|
||||
}
|
||||
|
||||
if(isset($row['unternehmen'])){
|
||||
$unternehmen = $row['unternehmen'];
|
||||
}else{
|
||||
$unternehmen = '';
|
||||
}
|
||||
|
||||
if(isset($row['kontakte'])){
|
||||
$kontakte = $row['kontakte'];
|
||||
}else{
|
||||
$kontakte = '';
|
||||
}
|
||||
|
||||
if(isset($row['schwierigkeit_kontakte'])){
|
||||
$schwierigkeit_kontakte = $row['schwierigkeit_kontakte'];
|
||||
}else{
|
||||
$schwierigkeit_kontakte = '';
|
||||
}
|
||||
echo"
|
||||
<table border='0' width='80%' id='table5' style='border-collapse: collapse' bgcolor='#EAEAEA'>
|
||||
<tr>
|
||||
@ -738,7 +876,7 @@ function fetch_select(){
|
||||
|
||||
Lebensunterhaltskosten/Woche ca. </td>
|
||||
<td width='56%' style='border-right-style: solid; border-right-width: 2px'>
|
||||
<input type='text' name='lebenshaltungskosten' value=\"$row[lebenshaltungskosten]\" size='65'></td>
|
||||
<input type='text' name='lebenshaltungskosten' value=\"$lebenshaltungskosten\" size='65'></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width='43%' style='border-left-style: solid; border-left-width: 2px'>
|
||||
@ -747,7 +885,7 @@ function fetch_select(){
|
||||
man unternehmen?<br>
|
||||
(Tagsüber und Nachts) </td>
|
||||
<td width='56%' style='border-right-style: solid; border-right-width: 2px'>
|
||||
<textarea rows='2' name='unternehmen' cols='48'>$row[unternehmen]</textarea></td>
|
||||
<textarea rows='2' name='unternehmen' cols='48'>$unternehmen</textarea></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width='43%' style='border-left-style: solid; border-left-width: 2px'>
|
||||
@ -755,7 +893,7 @@ function fetch_select(){
|
||||
Konntest du
|
||||
Kontakte knüpfen? </td>
|
||||
<td width='56%' style='border-right-style: solid; border-right-width: 2px'>
|
||||
<input type='text' name='kontakte' value=\"$row[kontakte]\" size='65'></td>
|
||||
<input type='text' name='kontakte' value=\"$kontakte\" size='65'></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width='43%' style='border-left-style: solid; border-left-width: 2px'>
|
||||
@ -763,7 +901,7 @@ function fetch_select(){
|
||||
War dies
|
||||
eher leicht/schwer? </td>
|
||||
<td width='56%' style='border-right-style: solid; border-right-width: 2px'>
|
||||
<input type='text' name='schwierigkeit_kontakte' value=\"$row[schwierigkeit_kontakte]\" size='65'></td>
|
||||
<input type='text' name='schwierigkeit_kontakte' value=\"$schwierigkeit_kontakte\" size='65'></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width='43%' style='border-left-style: solid; border-left-width: 2px; border-bottom-style: solid; border-bottom-width: 2px'>
|
||||
@ -781,6 +919,12 @@ function fetch_select(){
|
||||
FROM aesp_schluss
|
||||
WHERE uid='$uid1'");
|
||||
$row = $result->fetch_array();
|
||||
|
||||
if(isset($row['letzte_worte'])){
|
||||
$letzte_worte = $row['letzte_worte'];
|
||||
}else{
|
||||
$letzte_worte = '';
|
||||
}
|
||||
echo"
|
||||
<table border='0' width='80%' id='table6' style='border-collapse: collapse' bgcolor='#EAEAEA'>
|
||||
<tr>
|
||||
@ -796,7 +940,7 @@ function fetch_select(){
|
||||
<tr>
|
||||
<td width='99%' style='border-left-style: solid; border-left-width: 2px; border-right-style:solid; border-right-width:2px' colspan='2'>
|
||||
<p style='margin-left: 3px; margin-right: 3px'>
|
||||
<textarea rows='5' name='letzte_worte' cols='88'>$row[letzte_worte]</textarea></td>
|
||||
<textarea rows='5' name='letzte_worte' cols='88'>$letzte_worte</textarea></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width='43%' style='border-left-style: solid; border-left-width: 2px; border-bottom-style: solid; border-bottom-width: 2px'>
|
||||
@ -860,14 +1004,47 @@ if(!$sql){
|
||||
}
|
||||
|
||||
## Bewerbung ##
|
||||
if(isset($_POST['kontinent'])){
|
||||
$kontinent=addslashes($_POST['kontinent']);
|
||||
$land=addslashes($_POST['land']);
|
||||
$stadt=addslashes($_POST['stadt']);
|
||||
$stelle=addslashes($_POST['stelle']);
|
||||
$adresse=addslashes($_POST['kontaktadresse']);
|
||||
$ansprechpart=addslashes($_POST['ansprechpart']);
|
||||
$abteilung=addslashes($_POST['abteilung']);
|
||||
}else{
|
||||
$kontinent='';
|
||||
}
|
||||
|
||||
if(isset($_POST['land'])){
|
||||
$land=addslashes($_POST['land']);
|
||||
}else{
|
||||
$land='';
|
||||
}
|
||||
|
||||
if(isset($_POST['stadt'])){
|
||||
$stadt=addslashes($_POST['stadt']);
|
||||
}else{
|
||||
$stadt='';
|
||||
}
|
||||
|
||||
if(isset($_POST['stelle'])){
|
||||
$stelle=addslashes($_POST['stelle']);
|
||||
}else{
|
||||
$stelle='';
|
||||
}
|
||||
|
||||
if(isset($_POST['kontaktadresse'])){
|
||||
$adresse=addslashes($_POST['kontaktadresse']);
|
||||
}else{
|
||||
$adresse='';
|
||||
}
|
||||
|
||||
if(isset($_POST['ansprechpart'])){
|
||||
$ansprechpart=addslashes($_POST['ansprechpart']);
|
||||
}else{
|
||||
$ansprechpart='';
|
||||
}
|
||||
|
||||
if(isset($_POST['abteilung'])){
|
||||
$abteilung=addslashes($_POST['abteilung']);
|
||||
}else{
|
||||
$abteilung='';
|
||||
}
|
||||
|
||||
$sql = $db->query ("DELETE FROM aesp_bewerbung WHERE uid = '$uid1'");
|
||||
$sql = $db->query ("INSERT INTO aesp_bewerbung
|
||||
@ -883,18 +1060,71 @@ if(!$sql){
|
||||
## Allgemein ##
|
||||
$sql = $db->query ("DELETE FROM aesp_allgemein WHERE uid = '$uid1'");
|
||||
|
||||
if(isset($_POST['von_jahr']) AND isset($_POST['von_monat']) AND isset($_POST['von_tag'])){
|
||||
$zeitraum_von="$_POST[von_jahr]-$_POST[von_monat]-$_POST[von_tag]";
|
||||
$zeitraum_bis="$_POST[bis_jahr]-$_POST[bis_monat]-$_POST[bis_tag]";
|
||||
$abteilung_genau=$_POST['abteilung_genau'];
|
||||
$platz_gefunden=$_POST['platz_gefunden'];
|
||||
$visum=$_POST['visum'];
|
||||
$transport=$_POST['transport'];
|
||||
$beginn_vorbereitung=$_POST['vorbereitungsbeginn'];
|
||||
$erasmus=$_POST['erasmus'];
|
||||
$trennungsgeld=$_POST['trennungsgeld'];
|
||||
$modul=$_POST['modul'];
|
||||
$aufgaben=$_POST['aufgaben'];
|
||||
}else{
|
||||
$zeitraum_von='';
|
||||
}
|
||||
|
||||
if(isset($_POST['bis_jahr']) AND isset($_POST['bis_monat']) AND isset($_POST['bis_tag'])){
|
||||
$zeitraum_bis="$_POST[bis_jahr]-$_POST[bis_monat]-$_POST[bis_tag]";
|
||||
}else{
|
||||
$zeitraum_bis='';
|
||||
}
|
||||
|
||||
if(isset($_POST['abteilung_genau'])){
|
||||
$abteilung_genau=addslashes($_POST['abteilung_genau']);
|
||||
}else{
|
||||
$abteilung_genau='';
|
||||
}
|
||||
|
||||
if(isset($_POST['platz_gefunden'])){
|
||||
$platz_gefunden=addslashes($_POST['platz_gefunden']);
|
||||
}else{
|
||||
$platz_gefunden='';
|
||||
}
|
||||
|
||||
if(isset($_POST['visum'])){
|
||||
$visum=$_POST['visum'];
|
||||
}else{
|
||||
$visum='';
|
||||
}
|
||||
|
||||
if(isset($_POST['transport'])){
|
||||
$transport=$_POST['transport'];
|
||||
}else{
|
||||
$transport='';
|
||||
}
|
||||
|
||||
if(isset($_POST['vorbereitungsbeginn'])){
|
||||
$beginn_vorbereitung=$_POST['vorbereitungsbeginn'];
|
||||
}else{
|
||||
$beginn_vorbereitung='';
|
||||
}
|
||||
|
||||
if(isset($_POST['erasmus'])){
|
||||
$erasmus=$_POST['erasmus'];
|
||||
}else{
|
||||
$erasmus='';
|
||||
}
|
||||
|
||||
if(isset($_POST['trennungsgeld'])){
|
||||
$trennungsgeld=$_POST['trennungsgeld'];
|
||||
}else{
|
||||
$trennungsgeld='';
|
||||
}
|
||||
|
||||
if(isset($_POST['modul'])){
|
||||
$modul=$_POST['modul'];
|
||||
}else{
|
||||
$modul='';
|
||||
}
|
||||
|
||||
if(isset($_POST['aufgaben'])){
|
||||
$aufgaben=$_POST['aufgaben'];
|
||||
}else{
|
||||
$aufgaben='';
|
||||
}
|
||||
|
||||
$sql = $db->query ("INSERT INTO aesp_allgemein
|
||||
(uid, zeitraum_von, zeitraum_bis, abteilung_genau, platz_gefunden, visum, transport, beginn_vorbereitung, erasmus, trennungsgeld, modul, aufgaben)
|
||||
@ -911,9 +1141,23 @@ if(!$sql){
|
||||
## Unterkunft ##
|
||||
$sql = $db->query ("DELETE FROM aesp_unterkunft WHERE uid = '$uid1'");
|
||||
|
||||
if(isset($_POST['wo_gefunden'])){
|
||||
$wo_gefunden=$_POST['wo_gefunden'];
|
||||
}else{
|
||||
$wo_gefunden='';
|
||||
}
|
||||
|
||||
if(isset($_POST['ag_hilfe'])){
|
||||
$ag_hilfe=$_POST['ag_hilfe'];
|
||||
$kosten= $_POST['kosten'];
|
||||
}else{
|
||||
$ag_hilfe='';
|
||||
}
|
||||
|
||||
if(isset($_POST['kosten'])){
|
||||
$kosten=$_POST['kosten'];
|
||||
}else{
|
||||
$kosten='';
|
||||
}
|
||||
|
||||
$sql = $db->query ("INSERT INTO aesp_unterkunft
|
||||
(uid, wo_gefunden, ag_hilfe, kosten)
|
||||
@ -928,14 +1172,55 @@ if(!$sql){
|
||||
|
||||
## Bewertung ##
|
||||
$sql = $db->query ("DELETE FROM aesp_bewertung WHERE uid = '$uid1'");
|
||||
|
||||
if(isset($_POST['einbindung'])){
|
||||
$einbindung=$_POST['einbindung'];
|
||||
}else{
|
||||
$einbindung='';
|
||||
}
|
||||
|
||||
if(isset($_POST['aufnahme'])){
|
||||
$aufnahme=$_POST['aufnahme'];
|
||||
$interessant= $_POST['interessant'];
|
||||
}else{
|
||||
$aufnahme='';
|
||||
}
|
||||
|
||||
if(isset($_POST['interessant'])){
|
||||
$interessant=$_POST['interessant'];
|
||||
}else{
|
||||
$interessant='';
|
||||
}
|
||||
|
||||
if(isset($_POST['gefordert'])){
|
||||
$gefordert=$_POST['gefordert'];
|
||||
}else{
|
||||
$gefordert='';
|
||||
}
|
||||
|
||||
if(isset($_POST['dazulernen'])){
|
||||
$dazulernen=$_POST['dazulernen'];
|
||||
}else{
|
||||
$dazulernen='';
|
||||
}
|
||||
|
||||
if(isset($_POST['sprachprobleme'])){
|
||||
$sprachprobleme=$_POST['sprachprobleme'];
|
||||
}else{
|
||||
$sprachprobleme='';
|
||||
}
|
||||
|
||||
if(isset($_POST['erfahrungen'])){
|
||||
$erfahrungen=$_POST['erfahrungen'];
|
||||
}else{
|
||||
$erfahrungen='';
|
||||
}
|
||||
|
||||
if(isset($_POST['schwierigkeiten'])){
|
||||
$schwierigkeiten=$_POST['schwierigkeiten'];
|
||||
}else{
|
||||
$schwierigkeiten='';
|
||||
}
|
||||
|
||||
|
||||
|
||||
$sql = $db->query ("INSERT INTO aesp_bewertung
|
||||
@ -948,10 +1233,31 @@ if(!$sql){
|
||||
|
||||
## Freizeit ##
|
||||
$sql = $db->query ("DELETE FROM aesp_freizeit WHERE uid = '$uid1'");
|
||||
|
||||
if(isset($_POST['lebenshaltungskosten'])){
|
||||
$lebenshaltungskosten=$_POST['lebenshaltungskosten'];
|
||||
}else{
|
||||
$lebenshaltungskosten='';
|
||||
}
|
||||
|
||||
if(isset($_POST['unternehmen'])){
|
||||
$unternehmen=$_POST['unternehmen'];
|
||||
$kontakte= $_POST['kontakte'];
|
||||
}else{
|
||||
$unternehmen='';
|
||||
}
|
||||
|
||||
if(isset($_POST['kontakte'])){
|
||||
$kontakte=$_POST['kontakte'];
|
||||
}else{
|
||||
$kontakte='';
|
||||
}
|
||||
|
||||
if(isset($_POST['schwierigkeit_kontakte'])){
|
||||
$schwierigkeit_kontakte=$_POST['schwierigkeit_kontakte'];
|
||||
}else{
|
||||
$schwierigkeit_kontakte='';
|
||||
}
|
||||
|
||||
|
||||
$sql = $db->query ("INSERT INTO aesp_freizeit
|
||||
(uid, lebenshaltungskosten, unternehmen, kontakte, schwierigkeit_kontakte)
|
||||
@ -966,8 +1272,13 @@ if(!$sql){
|
||||
$sql = $db->query ("DELETE FROM aesp_schluss WHERE uid = '$uid1'");
|
||||
|
||||
|
||||
|
||||
if(isset($_POST['letzte_worte'])){
|
||||
$letzte_worte=$_POST['letzte_worte'];
|
||||
}else{
|
||||
$letzte_worte='';
|
||||
}
|
||||
|
||||
|
||||
$sql = $db->query ("INSERT INTO aesp_schluss
|
||||
(uid, letzte_worte)
|
||||
VALUES
|
||||
|
@ -27,7 +27,7 @@ if ($function == 'fetch_select') {
|
||||
|
||||
while ($row = $result->fetch_array()) {
|
||||
echo "<option value='$row[lid]'";
|
||||
if ($row1['land'] == $row['lid']) {
|
||||
if (isset($row1['land']) AND isset($row['lid']) AND $row1['land'] == $row['lid']) {
|
||||
echo " selected ";
|
||||
}
|
||||
echo ">" . $row['land'] . "</option>";
|
||||
|
@ -1,10 +1,10 @@
|
||||
<?php
|
||||
include("aespa/datenbankanbindung.php"); // fügt die Datenbankanbindung ein: Sys:\php\includes\kurs\datenbankanbindung.php
|
||||
session_start();
|
||||
if(isset($_SESSION["uid1"])){
|
||||
$uid=$_SESSION["uid1"];
|
||||
}elseif(isset($_COOKIE['uid1'])){
|
||||
$uid=$_COOKIE['uid1'];
|
||||
if(isset($_COOKIE["uid1"])){
|
||||
$uid=$_COOKIE["uid1"];
|
||||
}elseif(isset($_SESSION['uid1'])){
|
||||
$uid=$_SESSION['uid1'];
|
||||
}else{
|
||||
$uid='';
|
||||
}
|
||||
|
525
neuanlage.php
525
neuanlage.php
@ -181,7 +181,9 @@ setcookie("ck_uid1",$uid1);
|
||||
FROM aesp_bewerbung
|
||||
WHERE uid='$uid1'");
|
||||
$row3 = $result->fetch_array();
|
||||
if(isset($row3['land'])){
|
||||
setcookie("ck_lid",$row3['land']);
|
||||
}
|
||||
echo "
|
||||
<html>
|
||||
|
||||
@ -318,12 +320,12 @@ function fetch_select(){
|
||||
Studiengang </td>
|
||||
<td width='82%' colspan='3' style='border-right-style: solid; border-right-width: 2px'>
|
||||
<p style='margin-left: 3px; margin-right: 3px'>
|
||||
<input type='radio' value='PMGT' name='studiengang' "; if($row_einver['studiengang'] == 'PMGT'){ echo " checked "; } echo">Public Management<br>
|
||||
<input type='radio' value='AFV' name='studiengang' "; if($row_einver['studiengang'] == 'AFV'){ echo " checked "; } echo">Allgemeine Finanzverwaltung<br>
|
||||
<input type='radio' value='RV' name='studiengang' "; if($row_einver['studiengang'] == 'RV'){ echo " checked "; } echo">Rentenversicherung<br>
|
||||
<input type='radio' value='DVM' name='studiengang' "; if($row_einver['studiengang'] == 'DVM'){ echo " checked "; } echo">DVM<br>
|
||||
<input type='radio' value='MEPA' name='studiengang' "; if($row_einver['studiengang'] == 'MEPA'){ echo " checked "; } echo">MEPA<br>
|
||||
<input type='radio' value='S' name='studiengang' "; if($row_einver['studiengang'] == "S"){ echo " checked "; } echo">Sonstiges
|
||||
<input type='radio' value='PMGT' name='studiengang' "; if(isset($row_einver['studiengang']) AND $row_einver['studiengang'] == 'PMGT'){ echo " checked "; } echo">Public Management<br>
|
||||
<input type='radio' value='AFV' name='studiengang' "; if(isset($row_einver['studiengang']) AND $row_einver['studiengang'] == 'AFV'){ echo " checked "; } echo">Allgemeine Finanzverwaltung<br>
|
||||
<input type='radio' value='RV' name='studiengang' "; if(isset($row_einver['studiengang']) AND $row_einver['studiengang'] == 'RV'){ echo " checked "; } echo">Rentenversicherung<br>
|
||||
<input type='radio' value='DVM' name='studiengang' "; if(isset($row_einver['studiengang']) AND $row_einver['studiengang'] == 'DVM'){ echo " checked "; } echo">DVM<br>
|
||||
<input type='radio' value='MEPA' name='studiengang' "; if(isset($row_einver['studiengang']) AND $row_einver['studiengang'] == 'MEPA'){ echo " checked "; } echo">MEPA<br>
|
||||
<input type='radio' value='S' name='studiengang' "; if(isset($row_einver['studiengang']) AND $row_einver['studiengang'] == "S"){ echo " checked "; } echo">Sonstiges
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
@ -342,7 +344,7 @@ function fetch_select(){
|
||||
</td>
|
||||
<td width='82%' colspan='3' style='border-right-style: solid; border-right-width: 2px'>
|
||||
<p style='margin-left: 3px; margin-right: 3px'>
|
||||
<input type='checkbox' name='eiver_rueckfr' value=\"Y\""; if($row_einver['einverst'] == 'Y'){ echo " checked "; } echo">
|
||||
<input type='checkbox' name='eiver_rueckfr' value=\"Y\""; if(isset($row_einver['einverst']) AND $row_einver['einverst'] == 'Y'){ echo " checked "; } echo">
|
||||
Ich bin damit einverstanden, dass meine <u>Emailadresse</u> für eventuelle Nachfragen veröffentlicht wird.
|
||||
</td>
|
||||
</tr>
|
||||
@ -378,11 +380,11 @@ function fetch_select(){
|
||||
$query2 = "SELECT kid, kontinent FROM aesp_kontinent ORDER BY kontinent ASC";
|
||||
$result2 = $db->query ($query2)
|
||||
or die ("Cannot execute query");
|
||||
echo "<select id='kontinent' name='kontinent' onchange='getCityList(this)' onfocus='getCityList(this)'>
|
||||
echo "<select id='kontinent' name='kontinent' onchange='fetch_select();'>
|
||||
<option value=''>Select</option>";
|
||||
#echo "<option value='%'";if($row3[kontinent] == '%'){echo " selected";} echo">Alle </option>\n";
|
||||
while ($row2 = $result2->fetch_array()){
|
||||
echo "<option value=\"$row2[kid]\"";if($row2['kid'] == $row3['kontinent']){echo " selected";} echo">".$row2['kontinent']." </option>\n";
|
||||
echo "<option value=\"$row2[kid]\"";if(isset($row2['kid']) AND isset($row3['kontinent']) AND $row2['kid'] == $row3['kontinent']){echo " selected";} echo">".$row2['kontinent']." </option>\n";
|
||||
}
|
||||
echo"
|
||||
|
||||
@ -469,6 +471,95 @@ function fetch_select(){
|
||||
FROM aesp_allgemein
|
||||
WHERE uid='$uid1'");
|
||||
$row = $result->fetch_array();
|
||||
if(isset($row['von_tag'])){
|
||||
$von_tag = $row['von_tag'];
|
||||
}else{
|
||||
$von_tag = '';
|
||||
}
|
||||
|
||||
if(isset($row['von_mon'])){
|
||||
$von_mon = $row['von_mon'];
|
||||
}else{
|
||||
$von_mon = '';
|
||||
}
|
||||
|
||||
if(isset($row['von_jahr'])){
|
||||
$von_jahr = $row['von_jahr'];
|
||||
}else{
|
||||
$von_jahr = '';
|
||||
}
|
||||
|
||||
if(isset($row['bis_tag'])){
|
||||
$bis_tag = $row['bis_tag'];
|
||||
}else{
|
||||
$bis_tag = '';
|
||||
}
|
||||
|
||||
if(isset($row['bis_mon'])){
|
||||
$bis_mon = $row['bis_mon'];
|
||||
}else{
|
||||
$bis_mon = '';
|
||||
}
|
||||
|
||||
if(isset($row['bis_jahr'])){
|
||||
$bis_jahr = $row['bis_jahr'];
|
||||
}else{
|
||||
$bis_jahr = '';
|
||||
}
|
||||
|
||||
if(isset($row['abteilung_genau'])){
|
||||
$abteilung_genau = $row['abteilung_genau'];
|
||||
}else{
|
||||
$abteilung_genau = '';
|
||||
}
|
||||
|
||||
if(isset($row['platz_gefunden'])){
|
||||
$platz_gefunden = $row['platz_gefunden'];
|
||||
}else{
|
||||
$platz_gefunden = '';
|
||||
}
|
||||
|
||||
if(isset($row['visum'])){
|
||||
$visum = $row['visum'];
|
||||
}else{
|
||||
$visum = '';
|
||||
}
|
||||
|
||||
if(isset($row['transport'])){
|
||||
$transport = $row['transport'];
|
||||
}else{
|
||||
$transport = '';
|
||||
}
|
||||
|
||||
if(isset($row['beginn_vorbereitung'])){
|
||||
$beginn_vorbereitung = $row['beginn_vorbereitung'];
|
||||
}else{
|
||||
$beginn_vorbereitung = '';
|
||||
}
|
||||
|
||||
if(isset($row['erasmus'])){
|
||||
$erasmus = $row['erasmus'];
|
||||
}else{
|
||||
$erasmus = '';
|
||||
}
|
||||
|
||||
if(isset($row['trennungsgeld'])){
|
||||
$trennungsgeld = $row['trennungsgeld'];
|
||||
}else{
|
||||
$trennungsgeld = '';
|
||||
}
|
||||
|
||||
if(isset($row['modul'])){
|
||||
$modul = $row['modul'];
|
||||
}else{
|
||||
$modul = '';
|
||||
}
|
||||
|
||||
if(isset($row['aufgaben'])){
|
||||
$aufgaben = $row['aufgaben'];
|
||||
}else{
|
||||
$aufgaben = '';
|
||||
}
|
||||
|
||||
echo "
|
||||
<table border='0' width='80%' id='table2' style='border-collapse: collapse' bgcolor='#EAEAEA'>
|
||||
@ -486,7 +577,7 @@ function fetch_select(){
|
||||
<td width='82%' style='border-right-style: solid; border-right-width: 2px'>
|
||||
<p style='margin-left: 3px; margin-right: 3px'>
|
||||
<br>
|
||||
<input type='text' name='von_tag' value=\"$row[von_tag]\" size='2'>.<input type='text' name='von_monat' value=\"$row[von_mon]\" size='2'>.<input type='text' name='von_jahr' value=\"$row[von_jahr]\" size='4'> bis <input type='text' name='bis_tag' value=\"$row[bis_tag]\" size='2'>.<input type='text' name='bis_monat' value=\"$row[bis_mon]\" size='2'>.<input type='text' name='bis_jahr' value=\"$row[bis_jahr]\" size='4'>
|
||||
<input type='text' name='von_tag' value=\"$von_tag\" size='2'>.<input type='text' name='von_monat' value=\"$von_mon\" size='2'>.<input type='text' name='von_jahr' value=\"$von_jahr\" size='4'> bis <input type='text' name='bis_tag' value=\"$bis_tag\" size='2'>.<input type='text' name='bis_monat' value=\"$bis_mon\" size='2'>.<input type='text' name='bis_jahr' value=\"$bis_jahr\" size='4'>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
@ -496,7 +587,7 @@ function fetch_select(){
|
||||
Genaue Bezeichnung der Abteilung </td>
|
||||
<td width='82%' style='border-right-style: solid; border-right-width: 2px'>
|
||||
<p style='margin-left: 3px; margin-right: 3px'>
|
||||
<input type='text' name='abteilung_genau' value=\"$row[abteilung_genau]\" size='90'></p>
|
||||
<input type='text' name='abteilung_genau' value=\"$abteilung_genau\" size='90'></p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
@ -507,7 +598,7 @@ function fetch_select(){
|
||||
<tr>
|
||||
<td width='99%' style='border-left-style: solid; border-left-width: 2px; border-right-style:solid; border-right-width:2px' colspan='2'>
|
||||
<p style='margin-left: 3px; margin-right: 3px'>
|
||||
<input type='text' name='platz_gefunden' value=\"$row[platz_gefunden]\" size='118'></td>
|
||||
<input type='text' name='platz_gefunden' value=\"$platz_gefunden\" size='118'></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width='99%' style='border-left-style: solid; border-left-width: 2px; border-right-style:solid; border-right-width:2px' height='27' colspan='2'>
|
||||
@ -521,7 +612,7 @@ function fetch_select(){
|
||||
- Visum . </td>
|
||||
<td width='82%' style='border-right-style: solid; border-right-width: 2px'>
|
||||
<p style='margin-left: 3px; margin-right: 3px'>
|
||||
<input type='text' name='visum' value=\"$row[visum]\" size='90'></td>
|
||||
<input type='text' name='visum' value=\"$visum\" size='90'></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width='17%' style='border-left-style: solid; border-left-width: 2px'>
|
||||
@ -529,7 +620,7 @@ function fetch_select(){
|
||||
- Transport </td>
|
||||
<td width='82%' style='border-right-style: solid; border-right-width: 2px'>
|
||||
<p style='margin-left: 3px; margin-right: 3px'>
|
||||
<input type='text' name='transport' value=\"$row[transport]\" size='90'></td>
|
||||
<input type='text' name='transport' value=\"$transport\" size='90'></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width='99%' style='border-left-style: solid; border-left-width: 2px; border-right-style:solid; border-right-width:2px' height='27' colspan='2'>
|
||||
@ -540,7 +631,7 @@ function fetch_select(){
|
||||
<tr>
|
||||
<td width='99%' style='border-left-style: solid; border-left-width: 2px; border-right-style:solid; border-right-width:2px' colspan='2'>
|
||||
<p style='margin-left: 3px; margin-right: 3px'>
|
||||
<input type='text' name='vorbereitungsbeginn' value=\"$row[beginn_vorbereitung]\" size='118'></td>
|
||||
<input type='text' name='vorbereitungsbeginn' value=\"$beginn_vorbereitung\" size='118'></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width='99%' style='border-left-style: solid; border-left-width: 2px; border-right-style:solid; border-right-width:2px' height='27' colspan='2'>
|
||||
@ -552,7 +643,7 @@ function fetch_select(){
|
||||
<tr>
|
||||
<td width='99%' style='border-left-style: solid; border-left-width: 2px; border-right-style:solid; border-right-width:2px' colspan='2'>
|
||||
<p style='margin-left: 3px; margin-right: 3px'>
|
||||
<input type='text' name='erasmus' value=\"$row[erasmus]\" size='118'></td>
|
||||
<input type='text' name='erasmus' value=\"$erasmus\" size='118'></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<tr>
|
||||
@ -566,8 +657,7 @@ function fetch_select(){
|
||||
<tr>
|
||||
<td width='99%' style='border-left-style: solid; border-left-width: 2px; border-right-style:solid; border-right-width:2px' colspan='2'>
|
||||
<p style='margin-left: 3px; margin-right: 3px'>
|
||||
<!-- <input type='text' name='auslandszuschlag' value=\"$row[auslandskostenzuschlag]\" size='118'> -->
|
||||
<input type='text' name='trennungsgeld' value=\"$row[trennungsgeld]\" size='118'>
|
||||
<input type='text' name='trennungsgeld' value=\"$trennungsgeld\" size='118'>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
@ -581,11 +671,11 @@ function fetch_select(){
|
||||
<td width='99%' style='border-left-style: solid; border-left-width: 2px; border-right-style:solid; border-right-width:2px' colspan='2'>
|
||||
<p style='margin-left: 3px; margin-right: 3px' align='left'>
|
||||
<!-- bis 22.01.2024 name='bereich' -->
|
||||
<input type='radio' value='OPI' name='modul' "; if($row['modul'] == 'OPI'){ echo " checked "; } echo">Organisation, Personal, Informationsverarbeitung,<br>
|
||||
<input type='radio' value='OV' name='modul' "; if($row['modul'] == 'OV'){ echo " checked "; } echo">Ordnungsverwaltung<br>
|
||||
<input type='radio' value='LV' name='modul' "; if($row['modul'] == 'LV'){ echo " checked "; } echo">Leistungsverwaltung<br>
|
||||
<input type='radio' value='WFB' name='modul' "; if($row['modul'] == 'WFB'){ echo " checked "; } echo">Wirtschaft und Finanzen, öffentliche Betriebe<br>
|
||||
<input type='radio' value='KFS' name='modul' "; if($row['modul'] == 'KFS'){ echo " checked "; } echo">Kommunalpolitik, Führung im öffentlichen Sektor
|
||||
<input type='radio' value='OPI' name='modul' "; if($modul == 'OPI'){ echo " checked "; } echo">Organisation, Personal, Informationsverarbeitung,<br>
|
||||
<input type='radio' value='OV' name='modul' "; if($modul == 'OV'){ echo " checked "; } echo">Ordnungsverwaltung<br>
|
||||
<input type='radio' value='LV' name='modul' "; if($modul == 'LV'){ echo " checked "; } echo">Leistungsverwaltung<br>
|
||||
<input type='radio' value='WFB' name='modul' "; if($modul == 'WFB'){ echo " checked "; } echo">Wirtschaft und Finanzen, öffentliche Betriebe<br>
|
||||
<input type='radio' value='KFS' name='modul' "; if($modul == 'KFS'){ echo " checked "; } echo">Kommunalpolitik, Führung im öffentlichen Sektor
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
@ -598,7 +688,7 @@ function fetch_select(){
|
||||
<tr>
|
||||
<td width='99%' style='border-left-style: solid; border-left-width: 2px; border-right-style:solid; border-right-width:2px' colspan='2'>
|
||||
<p style='margin-left: 3px; margin-right: 3px'>
|
||||
<textarea rows='3' name='aufgaben' cols='88'>$row[aufgaben]</textarea></td>
|
||||
<textarea rows='3' name='aufgaben' cols='88'>$aufgaben</textarea></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width='17%' style='border-left-style: solid; border-left-width: 2px; border-bottom-style: solid; border-bottom-width: 2px'>
|
||||
@ -619,6 +709,23 @@ function fetch_select(){
|
||||
FROM aesp_unterkunft
|
||||
WHERE uid='$uid1'");
|
||||
$row = $result->fetch_array();
|
||||
if(isset($row['wo_gefunden'])){
|
||||
$wo_gefunden = $row['wo_gefunden'];
|
||||
}else{
|
||||
$wo_gefunden = '';
|
||||
}
|
||||
|
||||
if(isset($row['ag_hilfe'])){
|
||||
$ag_hilfe = $row['ag_hilfe'];
|
||||
}else{
|
||||
$ag_hilfe = '';
|
||||
}
|
||||
|
||||
if(isset($row['kosten'])){
|
||||
$kosten = $row['kosten'];
|
||||
}else{
|
||||
$kosten = '';
|
||||
}
|
||||
echo"
|
||||
<table border='0' width='80%' id='table3' style='border-collapse: collapse' bgcolor='#EAEAEA'>
|
||||
<tr>
|
||||
@ -635,7 +742,7 @@ function fetch_select(){
|
||||
<tr>
|
||||
<td width='99%' style='border-left-style: solid; border-left-width: 2px; border-right-style:solid; border-right-width:2px' colspan='2'>
|
||||
<p style='margin-left: 3px; margin-right: 3px'>
|
||||
<textarea rows='2' name='wo_gefunden' cols='88'>$row[wo_gefunden]</textarea></td>
|
||||
<textarea rows='2' name='wo_gefunden' cols='88'>$wo_gefunden</textarea></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width='99%' style='border-left-style: solid; border-left-width: 2px; border-right-style:solid; border-right-width:2px' height='27' colspan='2'>
|
||||
@ -648,7 +755,7 @@ function fetch_select(){
|
||||
<tr>
|
||||
<td width='99%' style='border-left-style: solid; border-left-width: 2px; border-right-style:solid; border-right-width:2px' colspan='2'>
|
||||
<p style='margin-left: 3px; margin-right: 3px'>
|
||||
<input type='text' name='ag_hilfe' value=\"$row[ag_hilfe]\" size='118'></td>
|
||||
<input type='text' name='ag_hilfe' value=\"$ag_hilfe\" size='118'></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width='99%' style='border-left-style: solid; border-left-width: 2px; border-right-style:solid; border-right-width:2px' height='27' colspan='2'>
|
||||
@ -658,7 +765,7 @@ function fetch_select(){
|
||||
<tr>
|
||||
<td width='99%' style='border-left-style: solid; border-left-width: 2px; border-right-style:solid; border-right-width:2px' colspan='2'>
|
||||
<p style='margin-left: 3px; margin-right: 3px'>
|
||||
<input type='text' name='kosten' value=\"$row[kosten]\" size='118'></td>
|
||||
<input type='text' name='kosten' value=\"$kosten\" size='118'></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width='17%' style='border-left-style: solid; border-left-width: 2px; border-bottom-style: solid; border-bottom-width: 2px'>
|
||||
@ -683,6 +790,11 @@ function fetch_select(){
|
||||
FROM aesp_bewertung
|
||||
WHERE uid='$uid1'");
|
||||
$row = $result->fetch_array();
|
||||
if(isset($row['schwierigkeiten'])){
|
||||
$schwierigkeiten = $row['schwierigkeiten'];
|
||||
}else{
|
||||
$schwierigkeiten = '';
|
||||
}
|
||||
echo"
|
||||
<table border='0' width='80%' id='table4' style='border-collapse: collapse' bgcolor='#EAEAEA'>
|
||||
<tr>
|
||||
@ -705,16 +817,16 @@ function fetch_select(){
|
||||
sehr gut in die tägliche Arbeit mit eingebunden </td>
|
||||
<td width='56%' style='border-right-style: solid; border-right-width: 2px'>
|
||||
|
||||
<input type='radio' name='einbindung' value='1'"; if($row['einbindung'] == '1'){ echo " checked "; } echo">1
|
||||
<input type='radio' name='einbindung' value='2'"; if($row['einbindung'] == '2'){ echo " checked "; } echo">2
|
||||
<input type='radio' name='einbindung' value='3'"; if($row['einbindung'] == '3'){ echo " checked "; } echo">3
|
||||
<input type='radio' name='einbindung' value='4'"; if($row['einbindung'] == '4'){ echo " checked "; } echo">4
|
||||
<input type='radio' name='einbindung' value='5'"; if($row['einbindung'] == '5'){ echo " checked "; } echo">5
|
||||
<input type='radio' name='einbindung' value='6'"; if($row['einbindung'] == '6'){ echo " checked "; } echo">6
|
||||
<input type='radio' name='einbindung' value='7'"; if($row['einbindung'] == '7'){ echo " checked "; } echo">7
|
||||
<input type='radio' name='einbindung' value='8'"; if($row['einbindung'] == '8'){ echo " checked "; } echo">8
|
||||
<input type='radio' name='einbindung' value='9'"; if($row['einbindung'] == '9'){ echo " checked "; } echo">9
|
||||
<input type='radio' name='einbindung' value='10'"; if($row['einbindung'] == '10'){ echo " checked "; } echo">10
|
||||
<input type='radio' name='einbindung' value='1'"; if(isset($row['einbindung']) AND $row['einbindung'] == '1'){ echo " checked "; } echo">1
|
||||
<input type='radio' name='einbindung' value='2'"; if(isset($row['einbindung']) AND $row['einbindung'] == '2'){ echo " checked "; } echo">2
|
||||
<input type='radio' name='einbindung' value='3'"; if(isset($row['einbindung']) AND $row['einbindung'] == '3'){ echo " checked "; } echo">3
|
||||
<input type='radio' name='einbindung' value='4'"; if(isset($row['einbindung']) AND $row['einbindung'] == '4'){ echo " checked "; } echo">4
|
||||
<input type='radio' name='einbindung' value='5'"; if(isset($row['einbindung']) AND $row['einbindung'] == '5'){ echo " checked "; } echo">5
|
||||
<input type='radio' name='einbindung' value='6'"; if(isset($row['einbindung']) AND $row['einbindung'] == '6'){ echo " checked "; } echo">6
|
||||
<input type='radio' name='einbindung' value='7'"; if(isset($row['einbindung']) AND $row['einbindung'] == '7'){ echo " checked "; } echo">7
|
||||
<input type='radio' name='einbindung' value='8'"; if(isset($row['einbindung']) AND $row['einbindung'] == '8'){ echo " checked "; } echo">8
|
||||
<input type='radio' name='einbindung' value='9'"; if(isset($row['einbindung']) AND $row['einbindung'] == '9'){ echo " checked "; } echo">9
|
||||
<input type='radio' name='einbindung' value='10'"; if(isset($row['einbindung']) AND $row['einbindung'] == '10'){ echo " checked "; } echo">10
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
@ -725,16 +837,16 @@ function fetch_select(){
|
||||
mich auch unter den Kollegen gut aufgenommen </td>
|
||||
<td width='56%' style='border-right-style: solid; border-right-width: 2px'>
|
||||
|
||||
<input type='radio' name='aufnahme' value='1'"; if($row['aufnahme'] == '1'){ echo " checked "; } echo">1
|
||||
<input type='radio' name='aufnahme' value='2'"; if($row['aufnahme'] == '2'){ echo " checked "; } echo">2
|
||||
<input type='radio' name='aufnahme' value='3'"; if($row['aufnahme'] == '3'){ echo " checked "; } echo">3
|
||||
<input type='radio' name='aufnahme' value='4'"; if($row['aufnahme'] == '4'){ echo " checked "; } echo">4
|
||||
<input type='radio' name='aufnahme' value='5'"; if($row['aufnahme'] == '5'){ echo " checked "; } echo">5
|
||||
<input type='radio' name='aufnahme' value='6'"; if($row['aufnahme'] == '6'){ echo " checked "; } echo">6
|
||||
<input type='radio' name='aufnahme' value='7'"; if($row['aufnahme'] == '7'){ echo " checked "; } echo">7
|
||||
<input type='radio' name='aufnahme' value='8'"; if($row['aufnahme'] == '8'){ echo " checked "; } echo">8
|
||||
<input type='radio' name='aufnahme' value='9'"; if($row['aufnahme'] == '9'){ echo " checked "; } echo">9
|
||||
<input type='radio' name='aufnahme' value='10'"; if($row['aufnahme'] == '10'){ echo " checked "; } echo">10
|
||||
<input type='radio' name='aufnahme' value='1'"; if(isset($row['aufnahme']) AND $row['aufnahme'] == '1'){ echo " checked "; } echo">1
|
||||
<input type='radio' name='aufnahme' value='2'"; if(isset($row['aufnahme']) AND $row['aufnahme'] == '2'){ echo " checked "; } echo">2
|
||||
<input type='radio' name='aufnahme' value='3'"; if(isset($row['aufnahme']) AND $row['aufnahme'] == '3'){ echo " checked "; } echo">3
|
||||
<input type='radio' name='aufnahme' value='4'"; if(isset($row['aufnahme']) AND $row['aufnahme'] == '4'){ echo " checked "; } echo">4
|
||||
<input type='radio' name='aufnahme' value='5'"; if(isset($row['aufnahme']) AND $row['aufnahme'] == '5'){ echo " checked "; } echo">5
|
||||
<input type='radio' name='aufnahme' value='6'"; if(isset($row['aufnahme']) AND $row['aufnahme'] == '6'){ echo " checked "; } echo">6
|
||||
<input type='radio' name='aufnahme' value='7'"; if(isset($row['aufnahme']) AND $row['aufnahme'] == '7'){ echo " checked "; } echo">7
|
||||
<input type='radio' name='aufnahme' value='8'"; if(isset($row['aufnahme']) AND $row['aufnahme'] == '8'){ echo " checked "; } echo">8
|
||||
<input type='radio' name='aufnahme' value='9'"; if(isset($row['aufnahme']) AND $row['aufnahme'] == '9'){ echo " checked "; } echo">9
|
||||
<input type='radio' name='aufnahme' value='10'"; if(isset($row['aufnahme']) AND $row['aufnahme'] == '10'){ echo " checked "; } echo">10
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
@ -745,16 +857,16 @@ function fetch_select(){
|
||||
gestellten Ausgaben waren interessant </td>
|
||||
<td width='56%' style='border-right-style: solid; border-right-width: 2px'>
|
||||
|
||||
<input type='radio' name='interessant' value='1'"; if($row['interessant'] == '1'){ echo " checked "; } echo">1
|
||||
<input type='radio' name='interessant' value='2'"; if($row['interessant'] == '2'){ echo " checked "; } echo">2
|
||||
<input type='radio' name='interessant' value='3'"; if($row['interessant'] == '3'){ echo " checked "; } echo">3
|
||||
<input type='radio' name='interessant' value='4'"; if($row['interessant'] == '4'){ echo " checked "; } echo">4
|
||||
<input type='radio' name='interessant' value='5'"; if($row['interessant'] == '5'){ echo " checked "; } echo">5
|
||||
<input type='radio' name='interessant' value='6'"; if($row['interessant'] == '6'){ echo " checked "; } echo">6
|
||||
<input type='radio' name='interessant' value='7'"; if($row['interessant'] == '7'){ echo " checked "; } echo">7
|
||||
<input type='radio' name='interessant' value='8'"; if($row['interessant'] == '8'){ echo " checked "; } echo">8
|
||||
<input type='radio' name='interessant' value='9'"; if($row['interessant'] == '9'){ echo " checked "; } echo">9
|
||||
<input type='radio' name='interessant' value='10'"; if($row['interessant'] == '10'){ echo " checked "; } echo">10
|
||||
<input type='radio' name='interessant' value='1'"; if(isset($row['interessant']) AND $row['interessant'] == '1'){ echo " checked "; } echo">1
|
||||
<input type='radio' name='interessant' value='2'"; if(isset($row['interessant']) AND $row['interessant'] == '2'){ echo " checked "; } echo">2
|
||||
<input type='radio' name='interessant' value='3'"; if(isset($row['interessant']) AND $row['interessant'] == '3'){ echo " checked "; } echo">3
|
||||
<input type='radio' name='interessant' value='4'"; if(isset($row['interessant']) AND $row['interessant'] == '4'){ echo " checked "; } echo">4
|
||||
<input type='radio' name='interessant' value='5'"; if(isset($row['interessant']) AND $row['interessant'] == '5'){ echo " checked "; } echo">5
|
||||
<input type='radio' name='interessant' value='6'"; if(isset($row['interessant']) AND $row['interessant'] == '6'){ echo " checked "; } echo">6
|
||||
<input type='radio' name='interessant' value='7'"; if(isset($row['interessant']) AND $row['interessant'] == '7'){ echo " checked "; } echo">7
|
||||
<input type='radio' name='interessant' value='8'"; if(isset($row['interessant']) AND $row['interessant'] == '8'){ echo " checked "; } echo">8
|
||||
<input type='radio' name='interessant' value='9'"; if(isset($row['interessant']) AND $row['interessant'] == '9'){ echo " checked "; } echo">9
|
||||
<input type='radio' name='interessant' value='10'"; if(isset($row['interessant']) AND $row['interessant'] == '10'){ echo " checked "; } echo">10
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
@ -765,16 +877,16 @@ function fetch_select(){
|
||||
mich gefordert </td>
|
||||
<td width='56%' style='border-right-style: solid; border-right-width: 2px'>
|
||||
|
||||
<input type='radio' name='gefordert' value='1'"; if($row['gefordert'] == '1'){ echo " checked "; } echo">1
|
||||
<input type='radio' name='gefordert' value='2'"; if($row['gefordert'] == '2'){ echo " checked "; } echo">2
|
||||
<input type='radio' name='gefordert' value='3'"; if($row['gefordert'] == '3'){ echo " checked "; } echo">3
|
||||
<input type='radio' name='gefordert' value='4'"; if($row['gefordert'] == '4'){ echo " checked "; } echo">4
|
||||
<input type='radio' name='gefordert' value='5'"; if($row['gefordert'] == '5'){ echo " checked "; } echo">5
|
||||
<input type='radio' name='gefordert' value='6'"; if($row['gefordert'] == '6'){ echo " checked "; } echo">6
|
||||
<input type='radio' name='gefordert' value='7'"; if($row['gefordert'] == '7'){ echo " checked "; } echo">7
|
||||
<input type='radio' name='gefordert' value='8'"; if($row['gefordert'] == '8'){ echo " checked "; } echo">8
|
||||
<input type='radio' name='gefordert' value='9'"; if($row['gefordert'] == '9'){ echo " checked "; } echo">9
|
||||
<input type='radio' name='gefordert' value='10'"; if($row['gefordert'] == '10'){ echo " checked "; } echo">10
|
||||
<input type='radio' name='gefordert' value='1'"; if(isset($row['gefordert']) AND $row['gefordert'] == '1'){ echo " checked "; } echo">1
|
||||
<input type='radio' name='gefordert' value='2'"; if(isset($row['gefordert']) AND $row['gefordert'] == '2'){ echo " checked "; } echo">2
|
||||
<input type='radio' name='gefordert' value='3'"; if(isset($row['gefordert']) AND $row['gefordert'] == '3'){ echo " checked "; } echo">3
|
||||
<input type='radio' name='gefordert' value='4'"; if(isset($row['gefordert']) AND $row['gefordert'] == '4'){ echo " checked "; } echo">4
|
||||
<input type='radio' name='gefordert' value='5'"; if(isset($row['gefordert']) AND $row['gefordert'] == '5'){ echo " checked "; } echo">5
|
||||
<input type='radio' name='gefordert' value='6'"; if(isset($row['gefordert']) AND $row['gefordert'] == '6'){ echo " checked "; } echo">6
|
||||
<input type='radio' name='gefordert' value='7'"; if(isset($row['gefordert']) AND $row['gefordert'] == '7'){ echo " checked "; } echo">7
|
||||
<input type='radio' name='gefordert' value='8'"; if(isset($row['gefordert']) AND $row['gefordert'] == '8'){ echo " checked "; } echo">8
|
||||
<input type='radio' name='gefordert' value='9'"; if(isset($row['gefordert']) AND $row['gefordert'] == '9'){ echo " checked "; } echo">9
|
||||
<input type='radio' name='gefordert' value='10'"; if(isset($row['gefordert']) AND $row['gefordert'] == '10'){ echo " checked "; } echo">10
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
@ -785,16 +897,16 @@ function fetch_select(){
|
||||
etwas dazulernen können </td>
|
||||
<td width='56%' style='border-right-style: solid; border-right-width: 2px'>
|
||||
|
||||
<input type='radio' name='dazulernen' value='1'"; if($row['dazulernen'] == '1'){ echo " checked "; } echo">1
|
||||
<input type='radio' name='dazulernen' value='2'"; if($row['dazulernen'] == '2'){ echo " checked "; } echo">2
|
||||
<input type='radio' name='dazulernen' value='3'"; if($row['dazulernen'] == '3'){ echo " checked "; } echo">3
|
||||
<input type='radio' name='dazulernen' value='4'"; if($row['dazulernen'] == '4'){ echo " checked "; } echo">4
|
||||
<input type='radio' name='dazulernen' value='5'"; if($row['dazulernen'] == '5'){ echo " checked "; } echo">5
|
||||
<input type='radio' name='dazulernen' value='6'"; if($row['dazulernen'] == '6'){ echo " checked "; } echo">6
|
||||
<input type='radio' name='dazulernen' value='7'"; if($row['dazulernen'] == '7'){ echo " checked "; } echo">7
|
||||
<input type='radio' name='dazulernen' value='8'"; if($row['dazulernen'] == '8'){ echo " checked "; } echo">8
|
||||
<input type='radio' name='dazulernen' value='9'"; if($row['dazulernen'] == '9'){ echo " checked "; } echo">9
|
||||
<input type='radio' name='dazulernen' value='10'"; if($row['dazulernen'] == '10'){ echo " checked "; } echo">10
|
||||
<input type='radio' name='dazulernen' value='1'"; if(isset($row['dazulernen']) AND $row['dazulernen'] == '1'){ echo " checked "; } echo">1
|
||||
<input type='radio' name='dazulernen' value='2'"; if(isset($row['dazulernen']) AND $row['dazulernen'] == '2'){ echo " checked "; } echo">2
|
||||
<input type='radio' name='dazulernen' value='3'"; if(isset($row['dazulernen']) AND $row['dazulernen'] == '3'){ echo " checked "; } echo">3
|
||||
<input type='radio' name='dazulernen' value='4'"; if(isset($row['dazulernen']) AND $row['dazulernen'] == '4'){ echo " checked "; } echo">4
|
||||
<input type='radio' name='dazulernen' value='5'"; if(isset($row['dazulernen']) AND $row['dazulernen'] == '5'){ echo " checked "; } echo">5
|
||||
<input type='radio' name='dazulernen' value='6'"; if(isset($row['dazulernen']) AND $row['dazulernen'] == '6'){ echo " checked "; } echo">6
|
||||
<input type='radio' name='dazulernen' value='7'"; if(isset($row['dazulernen']) AND $row['dazulernen'] == '7'){ echo " checked "; } echo">7
|
||||
<input type='radio' name='dazulernen' value='8'"; if(isset($row['dazulernen']) AND $row['dazulernen'] == '8'){ echo " checked "; } echo">8
|
||||
<input type='radio' name='dazulernen' value='9'"; if(isset($row['dazulernen']) AND $row['dazulernen'] == '9'){ echo " checked "; } echo">9
|
||||
<input type='radio' name='dazulernen' value='10'"; if(isset($row['dazulernen']) AND $row['dazulernen'] == '10'){ echo " checked "; } echo">10
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
@ -805,16 +917,16 @@ function fetch_select(){
|
||||
keinerlei Probleme mit der Sprache </td>
|
||||
<td width='56%' style='border-right-style: solid; border-right-width: 2px'>
|
||||
|
||||
<input type='radio' name='sprachprobleme' value='1'"; if($row['sprachprobleme'] == '1'){ echo " checked "; } echo">1
|
||||
<input type='radio' name='sprachprobleme' value='2'"; if($row['sprachprobleme'] == '2'){ echo " checked "; } echo">2
|
||||
<input type='radio' name='sprachprobleme' value='3'"; if($row['sprachprobleme'] == '3'){ echo " checked "; } echo">3
|
||||
<input type='radio' name='sprachprobleme' value='4'"; if($row['sprachprobleme'] == '4'){ echo " checked "; } echo">4
|
||||
<input type='radio' name='sprachprobleme' value='5'"; if($row['sprachprobleme'] == '5'){ echo " checked "; } echo">5
|
||||
<input type='radio' name='sprachprobleme' value='6'"; if($row['sprachprobleme'] == '6'){ echo " checked "; } echo">6
|
||||
<input type='radio' name='sprachprobleme' value='7'"; if($row['sprachprobleme'] == '7'){ echo " checked "; } echo">7
|
||||
<input type='radio' name='sprachprobleme' value='8'"; if($row['sprachprobleme'] == '8'){ echo " checked "; } echo">8
|
||||
<input type='radio' name='sprachprobleme' value='9'"; if($row['sprachprobleme'] == '9'){ echo " checked "; } echo">9
|
||||
<input type='radio' name='sprachprobleme' value='10'"; if($row['sprachprobleme'] == '10'){ echo " checked "; } echo">10
|
||||
<input type='radio' name='sprachprobleme' value='1'"; if(isset($row['sprachprobleme']) AND $row['sprachprobleme'] == '1'){ echo " checked "; } echo">1
|
||||
<input type='radio' name='sprachprobleme' value='2'"; if(isset($row['sprachprobleme']) AND $row['sprachprobleme'] == '2'){ echo " checked "; } echo">2
|
||||
<input type='radio' name='sprachprobleme' value='3'"; if(isset($row['sprachprobleme']) AND $row['sprachprobleme'] == '3'){ echo " checked "; } echo">3
|
||||
<input type='radio' name='sprachprobleme' value='4'"; if(isset($row['sprachprobleme']) AND $row['sprachprobleme'] == '4'){ echo " checked "; } echo">4
|
||||
<input type='radio' name='sprachprobleme' value='5'"; if(isset($row['sprachprobleme']) AND $row['sprachprobleme'] == '5'){ echo " checked "; } echo">5
|
||||
<input type='radio' name='sprachprobleme' value='6'"; if(isset($row['sprachprobleme']) AND $row['sprachprobleme'] == '6'){ echo " checked "; } echo">6
|
||||
<input type='radio' name='sprachprobleme' value='7'"; if(isset($row['sprachprobleme']) AND $row['sprachprobleme'] == '7'){ echo " checked "; } echo">7
|
||||
<input type='radio' name='sprachprobleme' value='8'"; if(isset($row['sprachprobleme']) AND $row['sprachprobleme'] == '8'){ echo " checked "; } echo">8
|
||||
<input type='radio' name='sprachprobleme' value='9'"; if(isset($row['sprachprobleme']) AND $row['sprachprobleme'] == '9'){ echo " checked "; } echo">9
|
||||
<input type='radio' name='sprachprobleme' value='10'"; if(isset($row['sprachprobleme']) AND $row['sprachprobleme'] == '10'){ echo " checked "; } echo">10
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
@ -824,16 +936,16 @@ function fetch_select(){
|
||||
Ich konnte viele gute Erfahrungen sammeln </td>
|
||||
<td width='56%' style='border-right-style: solid; border-right-width: 2px'>
|
||||
|
||||
<input type='radio' name='erfahrungen' value='1'"; if($row['erfahrungen'] == '1'){ echo " checked "; } echo">1
|
||||
<input type='radio' name='erfahrungen' value='2'"; if($row['erfahrungen'] == '2'){ echo " checked "; } echo">2
|
||||
<input type='radio' name='erfahrungen' value='3'"; if($row['erfahrungen'] == '3'){ echo " checked "; } echo">3
|
||||
<input type='radio' name='erfahrungen' value='4'"; if($row['erfahrungen'] == '4'){ echo " checked "; } echo">4
|
||||
<input type='radio' name='erfahrungen' value='5'"; if($row['erfahrungen'] == '5'){ echo " checked "; } echo">5
|
||||
<input type='radio' name='erfahrungen' value='6'"; if($row['erfahrungen'] == '6'){ echo " checked "; } echo">6
|
||||
<input type='radio' name='erfahrungen' value='7'"; if($row['erfahrungen'] == '7'){ echo " checked "; } echo">7
|
||||
<input type='radio' name='erfahrungen' value='8'"; if($row['erfahrungen'] == '8'){ echo " checked "; } echo">8
|
||||
<input type='radio' name='erfahrungen' value='9'"; if($row['erfahrungen'] == '9'){ echo " checked "; } echo">9
|
||||
<input type='radio' name='erfahrungen' value='10'"; if($row['erfahrungen'] == '10'){ echo " checked "; } echo">10
|
||||
<input type='radio' name='erfahrungen' value='1'"; if(isset($row['erfahrungen']) AND $row['erfahrungen'] == '1'){ echo " checked "; } echo">1
|
||||
<input type='radio' name='erfahrungen' value='2'"; if(isset($row['erfahrungen']) AND $row['erfahrungen'] == '2'){ echo " checked "; } echo">2
|
||||
<input type='radio' name='erfahrungen' value='3'"; if(isset($row['erfahrungen']) AND $row['erfahrungen'] == '3'){ echo " checked "; } echo">3
|
||||
<input type='radio' name='erfahrungen' value='4'"; if(isset($row['erfahrungen']) AND $row['erfahrungen'] == '4'){ echo " checked "; } echo">4
|
||||
<input type='radio' name='erfahrungen' value='5'"; if(isset($row['erfahrungen']) AND $row['erfahrungen'] == '5'){ echo " checked "; } echo">5
|
||||
<input type='radio' name='erfahrungen' value='6'"; if(isset($row['erfahrungen']) AND $row['erfahrungen'] == '6'){ echo " checked "; } echo">6
|
||||
<input type='radio' name='erfahrungen' value='7'"; if(isset($row['erfahrungen']) AND $row['erfahrungen'] == '7'){ echo " checked "; } echo">7
|
||||
<input type='radio' name='erfahrungen' value='8'"; if(isset($row['erfahrungen']) AND $row['erfahrungen'] == '8'){ echo " checked "; } echo">8
|
||||
<input type='radio' name='erfahrungen' value='9'"; if(isset($row['erfahrungen']) AND $row['erfahrungen'] == '9'){ echo " checked "; } echo">9
|
||||
<input type='radio' name='erfahrungen' value='10'"; if(isset($row['erfahrungen']) AND $row['erfahrungen'] == '10'){ echo " checked "; } echo">10
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
@ -845,7 +957,7 @@ function fetch_select(){
|
||||
Schwierigkeiten </td>
|
||||
<td width='56%' style='border-right-style: solid; border-right-width: 2px' height='25'>
|
||||
<br>
|
||||
<input type='text' name='schwierigkeiten' value=\"$row[schwierigkeiten]\" size='65'></td>
|
||||
<input type='text' name='schwierigkeiten' value=\"$schwierigkeiten\" size='65'></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width='43%' style='border-left-style: solid; border-left-width: 2px; border-bottom-style: solid; border-bottom-width: 2px'>
|
||||
@ -867,6 +979,30 @@ function fetch_select(){
|
||||
FROM aesp_freizeit
|
||||
WHERE uid='$uid1'");
|
||||
$row = $result->fetch_array();
|
||||
|
||||
if(isset($row['lebenshaltungskosten'])){
|
||||
$lebenshaltungskosten = $row['lebenshaltungskosten'];
|
||||
}else{
|
||||
$lebenshaltungskosten = '';
|
||||
}
|
||||
|
||||
if(isset($row['unternehmen'])){
|
||||
$unternehmen = $row['unternehmen'];
|
||||
}else{
|
||||
$unternehmen = '';
|
||||
}
|
||||
|
||||
if(isset($row['kontakte'])){
|
||||
$kontakte = $row['kontakte'];
|
||||
}else{
|
||||
$kontakte = '';
|
||||
}
|
||||
|
||||
if(isset($row['schwierigkeit_kontakte'])){
|
||||
$schwierigkeit_kontakte = $row['schwierigkeit_kontakte'];
|
||||
}else{
|
||||
$schwierigkeit_kontakte = '';
|
||||
}
|
||||
echo"
|
||||
<table border='0' width='80%' id='table5' style='border-collapse: collapse' bgcolor='#EAEAEA'>
|
||||
<tr>
|
||||
@ -882,7 +1018,7 @@ function fetch_select(){
|
||||
|
||||
Lebensunterhaltskosten/Woche ca. </td>
|
||||
<td width='56%' style='border-right-style: solid; border-right-width: 2px'>
|
||||
<input type='text' name='lebenshaltungskosten' value=\"$row[lebenshaltungskosten]\" size='65'></td>
|
||||
<input type='text' name='lebenshaltungskosten' value=\"$lebenshaltungskosten\" size='65'></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width='43%' style='border-left-style: solid; border-left-width: 2px'>
|
||||
@ -891,7 +1027,7 @@ function fetch_select(){
|
||||
man unternehmen?<br>
|
||||
(Tagsüber und Nachts) </td>
|
||||
<td width='56%' style='border-right-style: solid; border-right-width: 2px'>
|
||||
<textarea rows='2' name='unternehmen' cols='48'>$row[unternehmen]</textarea></td>
|
||||
<textarea rows='2' name='unternehmen' cols='48'>$unternehmen</textarea></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width='43%' style='border-left-style: solid; border-left-width: 2px'>
|
||||
@ -899,7 +1035,7 @@ function fetch_select(){
|
||||
Konntest du
|
||||
Kontakte knüpfen? </td>
|
||||
<td width='56%' style='border-right-style: solid; border-right-width: 2px'>
|
||||
<input type='text' name='kontakte' value=\"$row[kontakte]\" size='65'></td>
|
||||
<input type='text' name='kontakte' value=\"$kontakte\" size='65'></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width='43%' style='border-left-style: solid; border-left-width: 2px'>
|
||||
@ -907,7 +1043,7 @@ function fetch_select(){
|
||||
War dies
|
||||
eher leicht/schwer? </td>
|
||||
<td width='56%' style='border-right-style: solid; border-right-width: 2px'>
|
||||
<input type='text' name='schwierigkeit_kontakte' value=\"$row[schwierigkeit_kontakte]\" size='65'></td>
|
||||
<input type='text' name='schwierigkeit_kontakte' value=\"$schwierigkeit_kontakte\" size='65'></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width='43%' style='border-left-style: solid; border-left-width: 2px; border-bottom-style: solid; border-bottom-width: 2px'>
|
||||
@ -925,6 +1061,12 @@ function fetch_select(){
|
||||
FROM aesp_schluss
|
||||
WHERE uid='$uid1'");
|
||||
$row = $result->fetch_array();
|
||||
|
||||
if(isset($row['letzte_worte'])){
|
||||
$letzte_worte = $row['letzte_worte'];
|
||||
}else{
|
||||
$letzte_worte = '';
|
||||
}
|
||||
echo"
|
||||
<table border='0' width='80%' id='table6' style='border-collapse: collapse' bgcolor='#EAEAEA'>
|
||||
<tr>
|
||||
@ -940,7 +1082,7 @@ function fetch_select(){
|
||||
<tr>
|
||||
<td width='99%' style='border-left-style: solid; border-left-width: 2px; border-right-style:solid; border-right-width:2px' colspan='2'>
|
||||
<p style='margin-left: 3px; margin-right: 3px'>
|
||||
<textarea rows='5' name='letzte_worte' cols='88'>$row[letzte_worte]</textarea></td>
|
||||
<textarea rows='5' name='letzte_worte' cols='88'>$letzte_worte</textarea></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width='43%' style='border-left-style: solid; border-left-width: 2px; border-bottom-style: solid; border-bottom-width: 2px'>
|
||||
@ -1007,13 +1149,47 @@ if(!$sql){
|
||||
}
|
||||
|
||||
## Bewerbung ##
|
||||
if(isset($_POST['kontinent'])){
|
||||
$kontinent=addslashes($_POST['kontinent']);
|
||||
}else{
|
||||
$kontinent='';
|
||||
}
|
||||
|
||||
if(isset($_POST['land'])){
|
||||
$land=addslashes($_POST['land']);
|
||||
}else{
|
||||
$land='';
|
||||
}
|
||||
|
||||
if(isset($_POST['stadt'])){
|
||||
$stadt=addslashes($_POST['stadt']);
|
||||
}else{
|
||||
$stadt='';
|
||||
}
|
||||
|
||||
if(isset($_POST['stelle'])){
|
||||
$stelle=addslashes($_POST['stelle']);
|
||||
}else{
|
||||
$stelle='';
|
||||
}
|
||||
|
||||
if(isset($_POST['kontaktadresse'])){
|
||||
$adresse=addslashes($_POST['kontaktadresse']);
|
||||
}else{
|
||||
$adresse='';
|
||||
}
|
||||
|
||||
if(isset($_POST['ansprechpart'])){
|
||||
$ansprechpart=addslashes($_POST['ansprechpart']);
|
||||
}else{
|
||||
$ansprechpart='';
|
||||
}
|
||||
|
||||
if(isset($_POST['abteilung'])){
|
||||
$abteilung=addslashes($_POST['abteilung']);
|
||||
}else{
|
||||
$abteilung='';
|
||||
}
|
||||
|
||||
|
||||
$sql = $db->query ("DELETE FROM aesp_bewerbung WHERE uid = '$uid1'");
|
||||
@ -1030,17 +1206,71 @@ if(!$sql){
|
||||
## Allgemein ##
|
||||
$sql = $db->query ("DELETE FROM aesp_allgemein WHERE uid = '$uid1'");
|
||||
|
||||
if(isset($_POST['von_jahr']) AND isset($_POST['von_monat']) AND isset($_POST['von_tag'])){
|
||||
$zeitraum_von="$_POST[von_jahr]-$_POST[von_monat]-$_POST[von_tag]";
|
||||
}else{
|
||||
$zeitraum_von='';
|
||||
}
|
||||
|
||||
if(isset($_POST['bis_jahr']) AND isset($_POST['bis_monat']) AND isset($_POST['bis_tag'])){
|
||||
$zeitraum_bis="$_POST[bis_jahr]-$_POST[bis_monat]-$_POST[bis_tag]";
|
||||
$abteilung_genau=$_POST['abteilung_genau'];
|
||||
$platz_gefunden=$_POST['platz_gefunden'];
|
||||
}else{
|
||||
$zeitraum_bis='';
|
||||
}
|
||||
|
||||
if(isset($_POST['abteilung_genau'])){
|
||||
$abteilung_genau=addslashes($_POST['abteilung_genau']);
|
||||
}else{
|
||||
$abteilung_genau='';
|
||||
}
|
||||
|
||||
if(isset($_POST['platz_gefunden'])){
|
||||
$platz_gefunden=addslashes($_POST['platz_gefunden']);
|
||||
}else{
|
||||
$platz_gefunden='';
|
||||
}
|
||||
|
||||
if(isset($_POST['visum'])){
|
||||
$visum=$_POST['visum'];
|
||||
}else{
|
||||
$visum='';
|
||||
}
|
||||
|
||||
if(isset($_POST['transport'])){
|
||||
$transport=$_POST['transport'];
|
||||
}else{
|
||||
$transport='';
|
||||
}
|
||||
|
||||
if(isset($_POST['vorbereitungsbeginn'])){
|
||||
$beginn_vorbereitung=$_POST['vorbereitungsbeginn'];
|
||||
}else{
|
||||
$beginn_vorbereitung='';
|
||||
}
|
||||
|
||||
if(isset($_POST['erasmus'])){
|
||||
$erasmus=$_POST['erasmus'];
|
||||
}else{
|
||||
$erasmus='';
|
||||
}
|
||||
|
||||
if(isset($_POST['trennungsgeld'])){
|
||||
$trennungsgeld=$_POST['trennungsgeld'];
|
||||
}else{
|
||||
$trennungsgeld='';
|
||||
}
|
||||
|
||||
if(isset($_POST['modul'])){
|
||||
$modul=$_POST['modul'];
|
||||
}else{
|
||||
$modul='';
|
||||
}
|
||||
|
||||
if(isset($_POST['aufgaben'])){
|
||||
$aufgaben=$_POST['aufgaben'];
|
||||
}else{
|
||||
$aufgaben='';
|
||||
}
|
||||
|
||||
|
||||
$sql = $db->query ("INSERT INTO aesp_allgemein
|
||||
@ -1058,9 +1288,24 @@ if(!$sql){
|
||||
## Unterkunft ##
|
||||
$sql = $db->query ("DELETE FROM aesp_unterkunft WHERE uid = '$uid1'");
|
||||
|
||||
if(isset($_POST['wo_gefunden'])){
|
||||
$wo_gefunden=$_POST['wo_gefunden'];
|
||||
}else{
|
||||
$wo_gefunden='';
|
||||
}
|
||||
|
||||
if(isset($_POST['ag_hilfe'])){
|
||||
$ag_hilfe=$_POST['ag_hilfe'];
|
||||
$kosten= $_POST['kosten'];
|
||||
}else{
|
||||
$ag_hilfe='';
|
||||
}
|
||||
|
||||
if(isset($_POST['kosten'])){
|
||||
$kosten=$_POST['kosten'];
|
||||
}else{
|
||||
$kosten='';
|
||||
}
|
||||
|
||||
|
||||
$sql = $db->query ("INSERT INTO aesp_unterkunft
|
||||
(uid, wo_gefunden, ag_hilfe, kosten)
|
||||
@ -1075,14 +1320,54 @@ if(!$sql){
|
||||
|
||||
## Bewertung ##
|
||||
$sql = $db->query ("DELETE FROM aesp_bewertung WHERE uid = '$uid1'");
|
||||
if(isset($_POST['einbindung'])){
|
||||
$einbindung=$_POST['einbindung'];
|
||||
}else{
|
||||
$einbindung='';
|
||||
}
|
||||
|
||||
if(isset($_POST['aufnahme'])){
|
||||
$aufnahme=$_POST['aufnahme'];
|
||||
$interessant= $_POST['interessant'];
|
||||
}else{
|
||||
$aufnahme='';
|
||||
}
|
||||
|
||||
if(isset($_POST['interessant'])){
|
||||
$interessant=$_POST['interessant'];
|
||||
}else{
|
||||
$interessant='';
|
||||
}
|
||||
|
||||
if(isset($_POST['gefordert'])){
|
||||
$gefordert=$_POST['gefordert'];
|
||||
}else{
|
||||
$gefordert='';
|
||||
}
|
||||
|
||||
if(isset($_POST['dazulernen'])){
|
||||
$dazulernen=$_POST['dazulernen'];
|
||||
}else{
|
||||
$dazulernen='';
|
||||
}
|
||||
|
||||
if(isset($_POST['sprachprobleme'])){
|
||||
$sprachprobleme=$_POST['sprachprobleme'];
|
||||
}else{
|
||||
$sprachprobleme='';
|
||||
}
|
||||
|
||||
if(isset($_POST['erfahrungen'])){
|
||||
$erfahrungen=$_POST['erfahrungen'];
|
||||
}else{
|
||||
$erfahrungen='';
|
||||
}
|
||||
|
||||
if(isset($_POST['schwierigkeiten'])){
|
||||
$schwierigkeiten=$_POST['schwierigkeiten'];
|
||||
}else{
|
||||
$schwierigkeiten='';
|
||||
}
|
||||
|
||||
|
||||
|
||||
$sql = $db->query ("INSERT INTO aesp_bewertung
|
||||
@ -1095,10 +1380,30 @@ if(!$sql){
|
||||
|
||||
## Freizeit ##
|
||||
$sql = $db->query ("DELETE FROM aesp_freizeit WHERE uid = '$uid1'");
|
||||
if(isset($_POST['lebenshaltungskosten'])){
|
||||
$lebenshaltungskosten=$_POST['lebenshaltungskosten'];
|
||||
}else{
|
||||
$lebenshaltungskosten='';
|
||||
}
|
||||
|
||||
if(isset($_POST['unternehmen'])){
|
||||
$unternehmen=$_POST['unternehmen'];
|
||||
$kontakte= $_POST['kontakte'];
|
||||
}else{
|
||||
$unternehmen='';
|
||||
}
|
||||
|
||||
if(isset($_POST['kontakte'])){
|
||||
$kontakte=$_POST['kontakte'];
|
||||
}else{
|
||||
$kontakte='';
|
||||
}
|
||||
|
||||
if(isset($_POST['schwierigkeit_kontakte'])){
|
||||
$schwierigkeit_kontakte=$_POST['schwierigkeit_kontakte'];
|
||||
}else{
|
||||
$schwierigkeit_kontakte='';
|
||||
}
|
||||
|
||||
|
||||
$sql = $db->query ("INSERT INTO aesp_freizeit
|
||||
(uid, lebenshaltungskosten, unternehmen, kontakte, schwierigkeit_kontakte)
|
||||
@ -1114,7 +1419,11 @@ $sql = $db->query ("DELETE FROM aesp_schluss WHERE uid = '$uid1'");
|
||||
|
||||
|
||||
|
||||
if(isset($_POST['letzte_worte'])){
|
||||
$letzte_worte=$_POST['letzte_worte'];
|
||||
}else{
|
||||
$letzte_worte='';
|
||||
}
|
||||
$sql = $db->query ("INSERT INTO aesp_schluss
|
||||
(uid, letzte_worte)
|
||||
VALUES
|
||||
|
17
suche.php
17
suche.php
@ -106,7 +106,7 @@ function fetch_select(){
|
||||
<option value=''>Select</option>";
|
||||
# echo "<option value='%'";if($row3['kontinent'] == '%'){echo " selected";} echo">Alle </option>\n";
|
||||
while ($row2 = $result2->fetch_array()){
|
||||
echo "<option value='$row2[kid]'";if($row2['kid'] == $row3['kontinent']){echo " selected";} echo">".$row2['kontinent']." </option>\n";
|
||||
echo "<option value='$row2[kid]'";if(isset($row2['kid']) AND isset($row3['kontinent']) AND $row2['kid'] == $row3['kontinent']){echo " selected";} echo">".$row2['kontinent']." </option>\n";
|
||||
}
|
||||
echo"
|
||||
|
||||
@ -141,7 +141,7 @@ function fetch_select(){
|
||||
echo "<select size=\"1\" name=\"jahrgang\">";
|
||||
# echo "<option value='%'";if($row3[kontinent] == '%'){echo " selected";} echo">Alle </option>\n";
|
||||
while ($row2 = $result2->fetch_array()){
|
||||
echo "<option value='$row2[jahrgang]'"; if($row3['jahrgang'] == $row2['jahrgang']){echo " selected"; } echo">$row2[jahrgang]</option>\n";
|
||||
echo "<option value='$row2[jahrgang]'"; if(isset($row3['jahrgang']) AND isset($row2['jahrgang']) AND $row3['jahrgang'] == $row2['jahrgang']){echo " selected"; } echo">$row2[jahrgang]</option>\n";
|
||||
}
|
||||
echo "</select>
|
||||
|
||||
@ -197,9 +197,17 @@ if(!isset($_POST['jahrgang'])){
|
||||
$jahrgang=$_POST['jahrgang'];
|
||||
}
|
||||
|
||||
|
||||
if(isset($_GET["sort"])){
|
||||
$sort = $_GET["sort"];
|
||||
}else{
|
||||
$sort = 'kontinent';
|
||||
}
|
||||
|
||||
if(isset($_GET["option"])){
|
||||
$option = $_GET["option"];
|
||||
}else{
|
||||
$option = 'DESC';
|
||||
}
|
||||
|
||||
if($option == 'ASC'){
|
||||
$option = 'DESC';
|
||||
@ -207,9 +215,6 @@ if($option == 'ASC'){
|
||||
$option = 'ASC';
|
||||
}
|
||||
|
||||
if(!isset($sort)){
|
||||
$sort = "kontinent";
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user