Änderung Niki Adams 16.01.2024
This commit is contained in:
261
neuanlage.php
261
neuanlage.php
@ -83,7 +83,7 @@ echo "
|
||||
echo "
|
||||
<option value=\"".$row[0]."\">$row[nachname], $row[vorname] ($row[ag]/$row[jahrgang])
|
||||
";
|
||||
IF ($row[durchgefallen] == "Y")
|
||||
IF ($row['durchgefallen'] == "Y")
|
||||
echo " *"; ## kann nicht passieren, durch select :-)
|
||||
|
||||
echo "
|
||||
@ -160,7 +160,7 @@ echo "
|
||||
break;
|
||||
case "studbearb":
|
||||
|
||||
if(!isset($_POST[stud_uid])){
|
||||
if(!isset($_POST['stud_uid'])){
|
||||
$uid1 = $_GET['stud_uid'];
|
||||
}else{
|
||||
$uid1 = $_POST['stud_uid'];
|
||||
@ -174,13 +174,14 @@ setcookie("ck_uid1",$uid1);
|
||||
$result = $db->query("SELECT kontinent
|
||||
, land
|
||||
, stadt
|
||||
, stelle
|
||||
, adresse
|
||||
, ansprechpartner
|
||||
, abteilung
|
||||
FROM aesp_bewerbung
|
||||
WHERE uid='$uid1'");
|
||||
$row3 = $result->fetch_array();
|
||||
setcookie("ck_lid",$row3[land]);
|
||||
setcookie("ck_lid",$row3['land']);
|
||||
echo "
|
||||
<html>
|
||||
|
||||
@ -336,6 +337,24 @@ function createCities()
|
||||
<p style='margin-left: 3px; margin-right: 3px'>
|
||||
$row[poplz] $row[poort]
|
||||
</td>
|
||||
</tr>";
|
||||
$result_einver = $db->query("SELECT einverst, studiengang FROM aesp_pers_ang WHERE uid='$uid1'");
|
||||
$row_einver = $result_einver->fetch_array();
|
||||
echo"
|
||||
<tr>
|
||||
<td width='17%' style='border-left-style: solid; border-left-width: 2px'>
|
||||
<p style='margin-left: 3px; margin-right: 3px'>
|
||||
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
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width='17%' style='border-left-style: solid; border-left-width: 2px'>
|
||||
@ -345,17 +364,14 @@ function createCities()
|
||||
<p style='margin-left: 3px; margin-right: 3px'>
|
||||
<input type='text' name='mail' value='$row[mail2]' size='80'>
|
||||
</td>
|
||||
</tr>";
|
||||
$result_einver = $db->query("SELECT einverst FROM aesp_pers_ang WHERE uid='$uid1'");
|
||||
$row_einver = $result_einver->fetch_array();
|
||||
echo"
|
||||
</tr>
|
||||
<tr>
|
||||
<td width='17%' style='border-left-style: solid; border-left-width: 2px'>
|
||||
<p style='margin-left: 3px; margin-right: 3px'>
|
||||
</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($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>
|
||||
@ -368,8 +384,12 @@ function createCities()
|
||||
</tr>
|
||||
</table>
|
||||
<p style='margin-left: 3px; margin-right: 3px'> </div>
|
||||
<div align='center'>
|
||||
<table border='0' width='80%' id='table2' style='border-collapse: collapse' bgcolor='#EAEAEA'>
|
||||
<div align='center'>";
|
||||
|
||||
|
||||
|
||||
echo "
|
||||
<table border='0' width='80%' id='table1' style='border-collapse: collapse' bgcolor='#EAEAEA'>
|
||||
<tr>
|
||||
<td colspan='2' style='border-left-style: solid; border-left-width: 2px; border-right-style: solid; border-right-width: 2px; border-top-style: solid; border-top-width: 2px'>
|
||||
<p style='margin-left: 3px; margin-right: 3px'>
|
||||
@ -391,7 +411,7 @@ function createCities()
|
||||
<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($row2['kid'] == $row3['kontinent']){echo " selected";} echo">".$row2['kontinent']." </option>\n";
|
||||
}
|
||||
echo"
|
||||
|
||||
@ -471,9 +491,8 @@ function createCities()
|
||||
, transport
|
||||
, beginn_vorbereitung
|
||||
, erasmus
|
||||
, auslandskostenzuschlag
|
||||
, bereich
|
||||
, beschreibung
|
||||
, trennungsgeld
|
||||
, modul
|
||||
, aufgaben
|
||||
FROM aesp_allgemein
|
||||
WHERE uid='$uid1'");
|
||||
@ -568,52 +587,46 @@ function createCities()
|
||||
<td width='99%' style='border-left-style: solid; border-left-width: 2px; border-right-style:solid; border-right-width:2px' height='27' colspan='2'>
|
||||
<p style='margin-left: 3px; margin-right: 3px'>
|
||||
<br>
|
||||
Hast du einen Auslandskostenzuschlag beantragt und wie hoch war dieser?
|
||||
<!-- bis 21.01.2024 Hast du einen Auslandskostenzuschlag beantragt und wie hoch war dieser?-->
|
||||
Wirst du einen Antrag auf Trennungsgeld stellen?
|
||||
</td>
|
||||
</tr>
|
||||
<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'></td>
|
||||
<!-- <input type='text' name='auslandszuschlag' value='$row[auslandskostenzuschlag]' size='118'> -->
|
||||
<input type='text' name='trennungsgeld' value='$row[trennungsgeld]' 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'>
|
||||
<p style='margin-left: 3px; margin-right: 3px'>
|
||||
<br>
|
||||
In
|
||||
welchen Bereich kann man deinen Praktikumsplatz einordnen? </td>
|
||||
Nur Public Management: In welchem Modul hast Du Dein Praktikum gemacht?
|
||||
</td>
|
||||
</tr>
|
||||
<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' align='left'>
|
||||
|
||||
<input type='radio' value='OV' name='bereich' "; if($row[bereich] == 'OV'){ echo " checked "; } echo">Öffentliche Verwaltung<br>
|
||||
<input type='radio' value='FW' name='bereich' "; if($row[bereich] == 'FW'){ echo " checked "; } echo">Freie Wirtschaft<br>
|
||||
<input type='radio' value='S' name='bereich' "; if($row[bereich] == "S"){ echo " checked "; } echo">Sonstiges
|
||||
<!-- 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
|
||||
|
||||
</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'>
|
||||
<p style='margin-left: 3px; margin-right: 3px'><br>
|
||||
Bitte
|
||||
beschreibe die Stelle kurz: </td>
|
||||
Was waren Deine Aufgaben?
|
||||
</td>
|
||||
</tr>
|
||||
<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='stellenbeschreibung' cols='88'>$row[beschreibung]</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'>
|
||||
<p style='margin-left: 3px; margin-right: 3px'><br>
|
||||
Deine
|
||||
Aufgaben bei dieser Stelle waren: </td>
|
||||
</tr>
|
||||
<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='aufgaben' value='$row[aufgaben]' size='118'></td>
|
||||
<textarea rows='3' name='aufgaben' cols='88'>$row[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'>
|
||||
@ -720,16 +733,16 @@ function createCities()
|
||||
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($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
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
@ -740,16 +753,16 @@ function createCities()
|
||||
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($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
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
@ -760,16 +773,16 @@ function createCities()
|
||||
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($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
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
@ -780,16 +793,16 @@ function createCities()
|
||||
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($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
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
@ -800,16 +813,16 @@ function createCities()
|
||||
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($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
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
@ -820,16 +833,16 @@ function createCities()
|
||||
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($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
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
@ -839,16 +852,16 @@ function createCities()
|
||||
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($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
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
@ -989,20 +1002,32 @@ $fehler = TRUE;
|
||||
$db = dbconnect();
|
||||
|
||||
|
||||
## Persönliche Angaben ##
|
||||
## Pers<EFBFBD>nliche Angaben ##
|
||||
if(isset($_POST['mail'])){
|
||||
$mail=$_POST['mail'];
|
||||
$eiver_rueckfr=$_POST['eiver_rueckfr'];
|
||||
}else{
|
||||
$mail='';
|
||||
}
|
||||
|
||||
if($eiver_rueckfr == ''){
|
||||
if(isset($_POST['eiver_rueckfr']) AND $_POST['eiver_rueckfr'] != ''){
|
||||
$eiver_rueckfr=$_POST['eiver_rueckfr'];
|
||||
}else{
|
||||
$eiver_rueckfr = 'N';
|
||||
}
|
||||
|
||||
if(isset($_POST['studiengang']) AND $_POST['studiengang'] != ''){
|
||||
$studiengang=$_POST['studiengang'];
|
||||
}else{
|
||||
$studiengang = '';
|
||||
}
|
||||
|
||||
|
||||
$sql = $db->query ("DELETE FROM aesp_pers_ang WHERE uid = '$uid1'");
|
||||
$sql = $db->query ("UPDATE kurs.stud SET mail2 = '$mail' WHERE uid = '$uid1'");
|
||||
$sql = $db->query ("INSERT INTO aesp_pers_ang
|
||||
(uid, einverst)
|
||||
(uid, einverst, studiengang)
|
||||
VALUES
|
||||
('$uid1', '$eiver_rueckfr')");
|
||||
('$uid1', '$eiver_rueckfr', '$studiengang')");
|
||||
|
||||
|
||||
if(!$sql){
|
||||
@ -1013,15 +1038,16 @@ if(!$sql){
|
||||
$kontinent=$_POST['dhtmlgoodies_country'];
|
||||
$land=$_POST['dhtmlgoodies_city'];
|
||||
$stadt=$_POST['stadt'];
|
||||
$stelle=$_POST['stelle'];
|
||||
$adresse=$_POST['kontaktadresse'];
|
||||
$ansprechpart=$_POST['ansprechpart'];
|
||||
$abteilung=$_POST['abteilung'];
|
||||
|
||||
$sql = $db->query ("DELETE FROM aesp_bewerbung WHERE uid = '$uid1'");
|
||||
$sql = $db->query ("INSERT INTO aesp_bewerbung
|
||||
(uid, kontinent, land, stadt, adresse, ansprechpartner, abteilung)
|
||||
(uid, kontinent, land, stadt, stelle, adresse, ansprechpartner, abteilung)
|
||||
VALUES
|
||||
('$uid1', '$kontinent', '$land', '$stadt', '$adresse', '$ansprechpart', '$abteilung')");
|
||||
('$uid1', '$kontinent', '$land', '$stadt', '$stelle', '$adresse', '$ansprechpart', '$abteilung')");
|
||||
if(!$sql){
|
||||
$fehler = FALSE;
|
||||
}
|
||||
@ -1039,16 +1065,15 @@ $visum=$_POST['visum'];
|
||||
$transport=$_POST['transport'];
|
||||
$beginn_vorbereitung=$_POST['vorbereitungsbeginn'];
|
||||
$erasmus=$_POST['erasmus'];
|
||||
$auslandskostenzuschlag=$_POST['auslandszuschlag'];
|
||||
$bereich=$_POST['bereich'];
|
||||
$beschreibung=$_POST['stellenbeschreibung'];
|
||||
$trennungsgeld=$_POST['trennungsgeld'];
|
||||
$modul=$_POST['modul'];
|
||||
$aufgaben=$_POST['aufgaben'];
|
||||
|
||||
|
||||
$sql = $db->query ("INSERT INTO aesp_allgemein
|
||||
(uid, zeitraum_von, zeitraum_bis, abteilung_genau, platz_gefunden, visum, transport, beginn_vorbereitung, erasmus, auslandskostenzuschlag, bereich, beschreibung, aufgaben)
|
||||
(uid, zeitraum_von, zeitraum_bis, abteilung_genau, platz_gefunden, visum, transport, beginn_vorbereitung, erasmus, trennungsgeld, modul, aufgaben)
|
||||
VALUES
|
||||
('$uid1', '$zeitraum_von', '$zeitraum_bis', '$abteilung_genau', '$platz_gefunden', '$visum', '$transport', '$beginn_vorbereitung', '$erasmus', '$auslandskostenzuschlag', '$bereich', '$beschreibung', '$aufgaben')");
|
||||
('$uid1', '$zeitraum_von', '$zeitraum_bis', '$abteilung_genau', '$platz_gefunden', '$visum', '$transport', '$beginn_vorbereitung', '$erasmus', '$trennungsgeld', '$modul', '$aufgaben')");
|
||||
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user