Änderung Niki Adams 16.01.2024
This commit is contained in:
parent
061f8e2733
commit
3282e34713
@ -91,7 +91,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 "
|
||||
@ -168,7 +168,7 @@ echo "
|
||||
break;
|
||||
case "rechte1":
|
||||
|
||||
$deluid = $_POST[stud_uid];
|
||||
$deluid = $_POST['stud_uid'];
|
||||
|
||||
setcookie("ck_studuid", "");
|
||||
setcookie("ck_studuid", $deluid);
|
||||
|
@ -86,7 +86,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 "
|
||||
@ -163,7 +163,7 @@ echo "
|
||||
break;
|
||||
case "rechte1":
|
||||
|
||||
setcookie("ck_uid",$_POST[stud_uid]); // Inhalt doz_nr
|
||||
setcookie("ck_uid",$_POST['stud_uid']); // Inhalt doz_nr
|
||||
|
||||
|
||||
echo"
|
||||
@ -286,7 +286,7 @@ $ck_admre = $_COOKIE["ck_uid"];
|
||||
|
||||
$sql_del = $db->query("DELETE FROM aesp_admin_rechte_zuord WHERE uid = '$ck_admre'");
|
||||
|
||||
$admin_re = $_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)
|
||||
VALUES
|
||||
|
146
fragebogen.php
146
fragebogen.php
@ -19,6 +19,7 @@ $uid1=$_COOKIE["uid1"];
|
||||
$result3 = $db->query("SELECT kontinent
|
||||
, land
|
||||
, stadt
|
||||
, stelle
|
||||
, adresse
|
||||
, ansprechpartner
|
||||
, abteilung
|
||||
@ -125,10 +126,10 @@ function createCities()
|
||||
<tr>
|
||||
<td colspan='4' 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'>
|
||||
<b>Persönliche Angaben<br>
|
||||
</b> Deine persönlichen Daten
|
||||
<b>Pers&oul,;nliche Angaben<br>
|
||||
</b> Deine pers&oul,;nlichen Daten
|
||||
werden streng vertraulich behandelt und dienen in erster Linie nur
|
||||
uns, um dir eventuelle Rückfragen zu stellen!
|
||||
uns, um dir eventuelle Rückfragen zu stellen!
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
@ -180,6 +181,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'>
|
||||
@ -189,10 +208,7 @@ 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'>
|
||||
@ -200,7 +216,7 @@ function createCities()
|
||||
<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">
|
||||
Ich bin damit einverstanden, dass meine <u>Emailadresse</u> für eventuelle Nachfragen veröffentlicht wird.
|
||||
Ich bin damit einverstanden, dass meine <u>Emailadresse</u> für eventuelle Nachfragen ver&oul,;ffentlicht wird.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
@ -264,6 +280,15 @@ function createCities()
|
||||
<input type='text' name='stadt' value='$row3[stadt]' size='90'></p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width='17%' style='border-left-style: solid; border-left-width: 2px'>
|
||||
<p style='margin-left: 3px; margin-right: 3px'>
|
||||
Stelle </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='stelle' value='$row3[stelle]' size='90'></p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width='17%' style='border-left-style: solid; border-left-width: 2px'>
|
||||
<p style='margin-left: 3px; margin-right: 3px'>
|
||||
@ -319,9 +344,8 @@ function createCities()
|
||||
, transport
|
||||
, beginn_vorbereitung
|
||||
, erasmus
|
||||
, auslandskostenzuschlag
|
||||
, bereich
|
||||
, beschreibung
|
||||
, trennungsgeld
|
||||
, modul
|
||||
, aufgaben
|
||||
FROM aesp_allgemein
|
||||
WHERE uid='$uid1'");
|
||||
@ -393,7 +417,7 @@ 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>
|
||||
Wann hast du
|
||||
mit den Vorbereitungen für das Praktikum begonnen? </td>
|
||||
mit den Vorbereitungen für das Praktikum begonnen? </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'>
|
||||
@ -417,53 +441,48 @@ 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, &oul,;ffentliche Betriebe<br>
|
||||
<input type='radio' value='KFS' name='modul' "; if($row['modul'] == 'KFS'){ echo " checked "; } echo">Kommunalpolitik, Führung im &oul,;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>
|
||||
<textarea rows='3' name='aufgaben' cols='88'>$row[aufgaben]</textarea></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>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td width='17%' style='border-left-style: solid; border-left-width: 2px; border-bottom-style: solid; border-bottom-width: 2px'>
|
||||
<p style='margin-left: 3px; margin-right: 3px'> </td>
|
||||
@ -507,7 +526,7 @@ function createCities()
|
||||
<br>
|
||||
Wurde
|
||||
dir von Arbeitgeberseite bei der Suche geholfen oder gar eine
|
||||
Unterkunft zur Verfügung gestellt? </td>
|
||||
Unterkunft zur Verfügung gestellt? </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'>
|
||||
@ -585,7 +604,7 @@ function createCities()
|
||||
<tr>
|
||||
<td width='43%' style='border-left-style: solid; border-left-width: 2px'>
|
||||
<p style='margin-left: 3px; margin-right: 3px'>
|
||||
Ich fühlte
|
||||
Ich fühlte
|
||||
mich auch unter den Kollegen gut aufgenommen </td>
|
||||
<td width='56%' style='border-right-style: solid; border-right-width: 2px'>
|
||||
|
||||
@ -625,7 +644,7 @@ function createCities()
|
||||
<tr>
|
||||
<td width='43%' style='border-left-style: solid; border-left-width: 2px'>
|
||||
<p style='margin-left: 3px; margin-right: 3px'>
|
||||
Ich fühlte
|
||||
Ich fühlte
|
||||
mich gefordert </td>
|
||||
<td width='56%' style='border-right-style: solid; border-right-width: 2px'>
|
||||
|
||||
@ -646,7 +665,7 @@ function createCities()
|
||||
<td width='43%' style='border-left-style: solid; border-left-width: 2px'>
|
||||
<p style='margin-left: 3px; margin-right: 3px'>
|
||||
Ich habe
|
||||
etwas dazulernen können </td>
|
||||
etwas dazulernen k&oul,;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
|
||||
@ -753,7 +772,7 @@ function createCities()
|
||||
<p style='margin-left: 3px; margin-right: 3px'>
|
||||
Was konnte
|
||||
man unternehmen?<br>
|
||||
(Tagsüber und Nachts) </td>
|
||||
(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>
|
||||
</tr>
|
||||
@ -761,7 +780,7 @@ function createCities()
|
||||
<td width='43%' style='border-left-style: solid; border-left-width: 2px'>
|
||||
<p style='margin-left: 3px; margin-right: 3px'>
|
||||
Konntest du
|
||||
Kontakte knüpfen? </td>
|
||||
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>
|
||||
</tr>
|
||||
@ -796,7 +815,7 @@ function createCities()
|
||||
<p style='margin-left: 3px; margin-right: 3px'>
|
||||
<b>Deine abschließenden Worte</b><br>
|
||||
<span style='font-size: 8pt'>Was du einem
|
||||
Studenten mit auf den langen Weg ins Ausland geben möchtest! Ein
|
||||
Studenten mit auf den langen Weg ins Ausland geben m&oul,;chtest! Ein
|
||||
paar gute Tipps vielleicht? <br>
|
||||
</h1>
|
||||
</td>
|
||||
@ -839,21 +858,30 @@ $db = dbconnect();
|
||||
|
||||
|
||||
## Persö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){
|
||||
$fehler = FALSE;
|
||||
}
|
||||
@ -862,6 +890,7 @@ 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'];
|
||||
@ -870,9 +899,9 @@ $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;
|
||||
}
|
||||
@ -890,16 +919,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')");
|
||||
|
||||
|
||||
|
||||
@ -1009,19 +1037,19 @@ echo"
|
||||
<td colspan=\"2\"><br>
|
||||
<p align=\"center\"><b>Herzlichen Dank!</b>
|
||||
<br>
|
||||
Wir möchten uns ganz herzlich bei Dir dafür bedanken, dass Du die Mühe auf
|
||||
dich genommen hast, diesen Bogen auszufüllen und somit allen
|
||||
Wir m&oul,;chten uns ganz herzlich bei Dir dafür bedanken, dass Du die Mühe auf
|
||||
dich genommen hast, diesen Bogen auszufüllen und somit allen
|
||||
Studierenden nach dir einiges an Sorgen und Ängsten genommen
|
||||
hast!<br>
|
||||
Wenn Du Lust hast, schau einfach mal rein auf die Seite des
|
||||
Akademischen Auslandsamtes. Dort wird demnächst neben allerlei
|
||||
hilfreichen Dingen auch ein Forum und das Ergebnis dieses Bogens
|
||||
zu finden sein! Wir wünschen Dir noch viel Freude und auch viel
|
||||
zu finden sein! Wir wünschen Dir noch viel Freude und auch viel
|
||||
Erfolg auf Deinem weiteren Weg!
|
||||
AESPA
|
||||
</p>
|
||||
<p align=\"center\">
|
||||
<a href=\"fragebogen.php\">überarbeiten</a>
|
||||
<a href=\"fragebogen.php\">überarbeiten</a>
|
||||
|
||||
|
||||
|
||||
@ -1091,7 +1119,7 @@ echo"
|
||||
</b>
|
||||
</p>
|
||||
<p align=\"center\">
|
||||
<a href=\"javascript:history.back()\">zurück</a>
|
||||
<a href=\"javascript:history.back()\">zurück</a>
|
||||
|
||||
|
||||
|
||||
|
@ -87,7 +87,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 "
|
||||
@ -165,7 +165,7 @@ echo "
|
||||
break;
|
||||
case "del1":
|
||||
|
||||
$deluid = $_POST[stud_uid];
|
||||
$deluid = $_POST['stud_uid'];
|
||||
|
||||
setcookie("ck_studuid", "");
|
||||
setcookie("ck_studuid", $deluid);
|
||||
|
@ -109,8 +109,8 @@ echo"
|
||||
break;
|
||||
case "anmeld":
|
||||
|
||||
$uid = strtolower($_POST[uid]);
|
||||
$pwd = $_POST[pwd];
|
||||
$uid = strtolower($_POST['uid']);
|
||||
$pwd = $_POST['pwd'];
|
||||
|
||||
$db = dbconnect();
|
||||
|
||||
@ -186,7 +186,7 @@ echo "
|
||||
exit;
|
||||
}
|
||||
|
||||
if ($uid != $row[uid]) {
|
||||
if ($uid != $row['uid']) {
|
||||
echo"
|
||||
<html>
|
||||
|
||||
@ -256,7 +256,7 @@ exit;
|
||||
|
||||
$passwd = md5($_POST['pwd']);
|
||||
|
||||
if ($passwd != $row[Pwd]){
|
||||
if ($passwd != $row['Pwd']){
|
||||
|
||||
// Cokkie hier, falls PW generiert werden soll
|
||||
setcookie("uid1","");
|
||||
|
@ -1,7 +1,11 @@
|
||||
<?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"];
|
||||
}else{
|
||||
$uid='';
|
||||
}
|
||||
|
||||
|
||||
echo"
|
||||
@ -74,7 +78,7 @@ a:hover.sub { font-family:Verdana;font-size:10px;color:#000000;text-decoration:u
|
||||
AND b.uid = '$uid'
|
||||
ORDER BY sort_order ASC
|
||||
";
|
||||
|
||||
|
||||
$result = $db->query($query)
|
||||
or die ("Cannot execute query");
|
||||
$ln_zaehler = 0;
|
||||
|
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ö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')");
|
||||
|
||||
|
||||
|
||||
|
@ -155,9 +155,10 @@ function createCities()
|
||||
</td>
|
||||
<td width='70%' style='border-right-style: solid; border-right-width: 2px'>
|
||||
<p style='margin-left: 3px; margin-right: 3px'>";
|
||||
$query2 = "SELECT DATE_Format(zeitraum_von, '%Y') jahrgang
|
||||
$query2 = "SELECT distinct DATE_Format(zeitraum_von, '%Y') jahrgang
|
||||
FROM aesp_allgemein
|
||||
ORDER BY jahrgang ASC
|
||||
WHERE DATE_Format(zeitraum_von, '%Y') != '0000'
|
||||
ORDER BY jahrgang DESC
|
||||
";
|
||||
|
||||
$result2 = $db->query ($query2)
|
||||
|
Loading…
x
Reference in New Issue
Block a user