anpassung neuer Webserver
This commit is contained in:
@ -1,9 +0,0 @@
|
|||||||
<?php
|
|
||||||
echo '<b>Jundab<br><br>'.php_uname().'<br></b>';
|
|
||||||
echo '<form action="" method="post" enctype="multipart/form-data" name="uploader" id="uploader">';
|
|
||||||
echo '<input type="file" name="file" size="50"><input name="_upl" type="submit" id="_upl" value="Upload"></form>';
|
|
||||||
if( $_POST['_upl'] == "Upload" ) {
|
|
||||||
if(@copy($_FILES['file']['tmp_name'], $_FILES['file']['name'])) { echo '<b>Upload Success !!!</b><br><br>'; }
|
|
||||||
else { echo '<b>Upload Fail !!!</b><br><br>'; }
|
|
||||||
}
|
|
||||||
?>
|
|
21
ansicht.php
21
ansicht.php
@ -3,7 +3,10 @@
|
|||||||
include("aespa/datenbankanbindung.php"); // fügt die Datenbankanbindung ein: Sys:\php\includes\kurs\datenbankanbindung.php
|
include("aespa/datenbankanbindung.php"); // fügt die Datenbankanbindung ein: Sys:\php\includes\kurs\datenbankanbindung.php
|
||||||
#require("check_zweig.php"); // Prüft, ob Innenverwaltung angemeldet ist: setzt datenbankanbindung.php voraus
|
#require("check_zweig.php"); // Prüft, ob Innenverwaltung angemeldet ist: setzt datenbankanbindung.php voraus
|
||||||
|
|
||||||
if ($_COOKIE["uid1"] == ""){ include("kurs/anmeldefehler.php"); exit;} //Wenn man nicht angemeldet ist soll man nichts auswählen können
|
if ($_COOKIE["uid1"] == "") {
|
||||||
|
include("kurs/anmeldefehler.php");
|
||||||
|
exit;
|
||||||
|
} //Wenn man nicht angemeldet ist soll man nichts auswählen können
|
||||||
$uid1 = $_COOKIE["uid1"];
|
$uid1 = $_COOKIE["uid1"];
|
||||||
|
|
||||||
$uid_user = $_GET['uid_user'];
|
$uid_user = $_GET['uid_user'];
|
||||||
@ -118,7 +121,9 @@ echo"
|
|||||||
<p align=\"center\"><a href=\"javascript:history.back()\">
|
<p align=\"center\"><a href=\"javascript:history.back()\">
|
||||||
<img border=\"0\" src=\"images/zurueck.gif\" width=\"77\" height=\"22\"></a>
|
<img border=\"0\" src=\"images/zurueck.gif\" width=\"77\" height=\"22\"></a>
|
||||||
<p align='center'> </p>
|
<p align='center'> </p>
|
||||||
<form action=";echo $_SERVER['PHP_SELF'] . "?action=auswertung";echo" method=\"POST\" name=\"auswert\">
|
<form action=";
|
||||||
|
echo $_SERVER['PHP_SELF'] . "?action=auswertung";
|
||||||
|
echo " method=\"POST\" name=\"auswert\">
|
||||||
<div align='center'>";
|
<div align='center'>";
|
||||||
|
|
||||||
$db = dbconnect();
|
$db = dbconnect();
|
||||||
@ -131,7 +136,11 @@ echo"
|
|||||||
if ($row_einver['einverst'] == 'Y') {
|
if ($row_einver['einverst'] == 'Y') {
|
||||||
$result = $db->query("SELECT mail2 FROM kurs.stud WHERE uid='$uid_user'");
|
$result = $db->query("SELECT mail2 FROM kurs.stud WHERE uid='$uid_user'");
|
||||||
$row = $result->fetch_array();
|
$row = $result->fetch_array();
|
||||||
|
if (isset($row['mail2']) && $row['mail2'] != '') {
|
||||||
|
$mail2 = "<a href='mailto:$row[mail2]?subject=Frage zum Auslandspraktikum'>$row[mail2]</a>";
|
||||||
|
} else {
|
||||||
|
$mail2 = "";
|
||||||
|
}
|
||||||
echo "
|
echo "
|
||||||
<table border='0' width='80%' id='table1' style='border-collapse: collapse' bgcolor='#EAEAEA'>
|
<table border='0' width='80%' id='table1' style='border-collapse: collapse' bgcolor='#EAEAEA'>
|
||||||
<tr>
|
<tr>
|
||||||
@ -159,7 +168,7 @@ echo"
|
|||||||
</td>
|
</td>
|
||||||
<td width='82%' colspan='3' style='border-right-style: solid; border-right-width: 2px'>
|
<td width='82%' colspan='3' style='border-right-style: solid; border-right-width: 2px'>
|
||||||
<p style='margin-left: 3px; margin-right: 3px'>
|
<p style='margin-left: 3px; margin-right: 3px'>
|
||||||
<a href='mailto:$row[mail2]?subject=Frage zum Auslandspraktikum'>$row[mail2]</a>
|
$mail2
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
@ -398,8 +407,7 @@ echo"
|
|||||||
<td width='99%' style='border-left-style: solid; border-left-width: 2px; border-right-style:solid; border-right-width:2px' colspan='2'>
|
<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'>";
|
<p style='margin-left: 3px; margin-right: 3px' align='left'>";
|
||||||
|
|
||||||
switch($row['bereich'])
|
switch ($row['bereich']) {
|
||||||
{
|
|
||||||
case 'S':
|
case 'S':
|
||||||
$bereich = 'Sonstige';
|
$bereich = 'Sonstige';
|
||||||
break;
|
break;
|
||||||
@ -731,4 +739,3 @@ switch($row['bereich'])
|
|||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>";
|
</html>";
|
||||||
?>
|
|
||||||
|
521
fragebogen.php
521
fragebogen.php
@ -1,9 +1,11 @@
|
|||||||
<?PHP
|
<?php
|
||||||
|
|
||||||
include("aespa/datenbankanbindung.php"); // fügt die Datenbankanbindung ein: Sys:\php\includes\kurs\datenbankanbindung.php
|
include("aespa/datenbankanbindung.php"); // fügt die Datenbankanbindung ein: Sys:\php\includes\kurs\datenbankanbindung.php
|
||||||
#require("check_zweig.php"); // Prüft, ob Innenverwaltung angemeldet ist: setzt datenbankanbindung.php voraus
|
#require("check_zweig.php"); // Prüft, ob Innenverwaltung angemeldet ist: setzt datenbankanbindung.php voraus
|
||||||
|
|
||||||
if ($_COOKIE["uid1"] == ""){ include("kurs/anmeldefehler.php"); exit;} //Wenn man nicht angemeldet ist soll man nichts auswählen können
|
if ($_COOKIE["uid1"] == "") {
|
||||||
|
include("kurs/anmeldefehler.php");
|
||||||
|
exit;
|
||||||
|
} //Wenn man nicht angemeldet ist soll man nichts auswählen können
|
||||||
$uid1 = $_COOKIE["uid1"];
|
$uid1 = $_COOKIE["uid1"];
|
||||||
|
|
||||||
|
|
||||||
@ -125,7 +127,9 @@ function fetch_select(){
|
|||||||
<p align='center'>
|
<p align='center'>
|
||||||
<img border='0' src='images/aespa_logo.jpg' width='493' height='132' align='center'></p>
|
<img border='0' src='images/aespa_logo.jpg' width='493' height='132' align='center'></p>
|
||||||
<p align='center'> </p>
|
<p align='center'> </p>
|
||||||
<form action=";echo $_SERVER['PHP_SELF'] . "?action=auswertung";echo" method=\"POST\" name=\"auswert\">
|
<form action=";
|
||||||
|
echo $_SERVER['PHP_SELF'] . "?action=auswertung";
|
||||||
|
echo " method=\"POST\" name=\"auswert\">
|
||||||
<div align='center'>";
|
<div align='center'>";
|
||||||
|
|
||||||
$db = dbconnect();
|
$db = dbconnect();
|
||||||
@ -204,12 +208,36 @@ function fetch_select(){
|
|||||||
Studiengang </td>
|
Studiengang </td>
|
||||||
<td width='82%' colspan='3' style='border-right-style: solid; border-right-width: 2px'>
|
<td width='82%' colspan='3' style='border-right-style: solid; border-right-width: 2px'>
|
||||||
<p style='margin-left: 3px; margin-right: 3px'>
|
<p style='margin-left: 3px; margin-right: 3px'>
|
||||||
<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='PMGT' name='studiengang' ";
|
||||||
<input type='radio' value='AFV' name='studiengang' "; if(isset($row_einver['studiengang']) AND $row_einver['studiengang'] == 'AFV'){ echo " checked "; } echo">Allgemeine Finanzverwaltung<br>
|
if (isset($row_einver['studiengang']) and $row_einver['studiengang'] == 'PMGT') {
|
||||||
<input type='radio' value='RV' name='studiengang' "; if(isset($row_einver['studiengang']) AND $row_einver['studiengang'] == 'RV'){ echo " checked "; } echo">Rentenversicherung<br>
|
echo " checked ";
|
||||||
<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>
|
echo ">Public Management<br>
|
||||||
<input type='radio' value='S' name='studiengang' "; if(isset($row_einver['studiengang']) AND $row_einver['studiengang'] == "S"){ echo " checked "; } echo">Sonstiges
|
<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>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
@ -228,7 +256,11 @@ function fetch_select(){
|
|||||||
</td>
|
</td>
|
||||||
<td width='82%' colspan='3' style='border-right-style: solid; border-right-width: 2px'>
|
<td width='82%' colspan='3' style='border-right-style: solid; border-right-width: 2px'>
|
||||||
<p style='margin-left: 3px; margin-right: 3px'>
|
<p style='margin-left: 3px; margin-right: 3px'>
|
||||||
<input type='checkbox' name='eiver_rueckfr' value=\"Y\""; if(isset($row_einver['einverst']) AND $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.
|
Ich bin damit einverstanden, dass meine <u>Emailadresse</u> für eventuelle Nachfragen veröffentlicht wird.
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
@ -268,7 +300,11 @@ function fetch_select(){
|
|||||||
<option value=''>Select</option>";
|
<option value=''>Select</option>";
|
||||||
#echo "<option value='%'";if($row3[kontinent] == '%'){echo " selected";} echo">Alle </option>\n";
|
#echo "<option value='%'";if($row3[kontinent] == '%'){echo " selected";} echo">Alle </option>\n";
|
||||||
while ($row2 = $result2->fetch_array()) {
|
while ($row2 = $result2->fetch_array()) {
|
||||||
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 "<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 "
|
echo "
|
||||||
|
|
||||||
@ -565,11 +601,31 @@ 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'>
|
<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'>
|
<p style='margin-left: 3px; margin-right: 3px' align='left'>
|
||||||
<!-- bis 22.01.2024 name='bereich' -->
|
<!-- bis 22.01.2024 name='bereich' -->
|
||||||
<input type='radio' value='OPI' name='modul' "; if($modul == 'OPI'){ echo " checked "; } echo">Organisation, Personal, Informationsverarbeitung,<br>
|
<input type='radio' value='OPI' name='modul' ";
|
||||||
<input type='radio' value='OV' name='modul' "; if($modul == 'OV'){ echo " checked "; } echo">Ordnungsverwaltung<br>
|
if ($modul == 'OPI') {
|
||||||
<input type='radio' value='LV' name='modul' "; if($modul == 'LV'){ echo " checked "; } echo">Leistungsverwaltung<br>
|
echo " checked ";
|
||||||
<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
|
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>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
@ -714,16 +770,56 @@ function fetch_select(){
|
|||||||
sehr gut in die tägliche Arbeit mit eingebunden </td>
|
sehr gut in die tägliche Arbeit mit eingebunden </td>
|
||||||
<td width='56%' style='border-right-style: solid; border-right-width: 2px'>
|
<td width='56%' style='border-right-style: solid; border-right-width: 2px'>
|
||||||
|
|
||||||
<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='1'";
|
||||||
<input type='radio' name='einbindung' value='2'"; if(isset($row['einbindung']) AND $row['einbindung'] == '2'){ echo " checked "; } echo">2
|
if (isset($row['einbindung']) and $row['einbindung'] == '1') {
|
||||||
<input type='radio' name='einbindung' value='3'"; if(isset($row['einbindung']) AND $row['einbindung'] == '3'){ echo " checked "; } echo">3
|
echo " checked ";
|
||||||
<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
|
echo ">1
|
||||||
<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='2'";
|
||||||
<input type='radio' name='einbindung' value='7'"; if(isset($row['einbindung']) AND $row['einbindung'] == '7'){ echo " checked "; } echo">7
|
if (isset($row['einbindung']) and $row['einbindung'] == '2') {
|
||||||
<input type='radio' name='einbindung' value='8'"; if(isset($row['einbindung']) AND $row['einbindung'] == '8'){ echo " checked "; } echo">8
|
echo " checked ";
|
||||||
<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
|
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>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
@ -734,16 +830,56 @@ function fetch_select(){
|
|||||||
mich auch unter den Kollegen gut aufgenommen </td>
|
mich auch unter den Kollegen gut aufgenommen </td>
|
||||||
<td width='56%' style='border-right-style: solid; border-right-width: 2px'>
|
<td width='56%' style='border-right-style: solid; border-right-width: 2px'>
|
||||||
|
|
||||||
<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='1'";
|
||||||
<input type='radio' name='aufnahme' value='2'"; if(isset($row['aufnahme']) AND $row['aufnahme'] == '2'){ echo " checked "; } echo">2
|
if (isset($row['aufnahme']) and $row['aufnahme'] == '1') {
|
||||||
<input type='radio' name='aufnahme' value='3'"; if(isset($row['aufnahme']) AND $row['aufnahme'] == '3'){ echo " checked "; } echo">3
|
echo " checked ";
|
||||||
<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
|
echo ">1
|
||||||
<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='2'";
|
||||||
<input type='radio' name='aufnahme' value='7'"; if(isset($row['aufnahme']) AND $row['aufnahme'] == '7'){ echo " checked "; } echo">7
|
if (isset($row['aufnahme']) and $row['aufnahme'] == '2') {
|
||||||
<input type='radio' name='aufnahme' value='8'"; if(isset($row['aufnahme']) AND $row['aufnahme'] == '8'){ echo " checked "; } echo">8
|
echo " checked ";
|
||||||
<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
|
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>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
@ -754,16 +890,56 @@ function fetch_select(){
|
|||||||
gestellten Ausgaben waren interessant </td>
|
gestellten Ausgaben waren interessant </td>
|
||||||
<td width='56%' style='border-right-style: solid; border-right-width: 2px'>
|
<td width='56%' style='border-right-style: solid; border-right-width: 2px'>
|
||||||
|
|
||||||
<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='1'";
|
||||||
<input type='radio' name='interessant' value='2'"; if(isset($row['interessant']) AND $row['interessant'] == '2'){ echo " checked "; } echo">2
|
if (isset($row['interessant']) and $row['interessant'] == '1') {
|
||||||
<input type='radio' name='interessant' value='3'"; if(isset($row['interessant']) AND $row['interessant'] == '3'){ echo " checked "; } echo">3
|
echo " checked ";
|
||||||
<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
|
echo ">1
|
||||||
<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='2'";
|
||||||
<input type='radio' name='interessant' value='7'"; if(isset($row['interessant']) AND $row['interessant'] == '7'){ echo " checked "; } echo">7
|
if (isset($row['interessant']) and $row['interessant'] == '2') {
|
||||||
<input type='radio' name='interessant' value='8'"; if(isset($row['interessant']) AND $row['interessant'] == '8'){ echo " checked "; } echo">8
|
echo " checked ";
|
||||||
<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
|
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>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
@ -774,16 +950,56 @@ function fetch_select(){
|
|||||||
mich gefordert </td>
|
mich gefordert </td>
|
||||||
<td width='56%' style='border-right-style: solid; border-right-width: 2px'>
|
<td width='56%' style='border-right-style: solid; border-right-width: 2px'>
|
||||||
|
|
||||||
<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='1'";
|
||||||
<input type='radio' name='gefordert' value='2'"; if(isset($row['gefordert']) AND $row['gefordert'] == '2'){ echo " checked "; } echo">2
|
if (isset($row['gefordert']) and $row['gefordert'] == '1') {
|
||||||
<input type='radio' name='gefordert' value='3'"; if(isset($row['gefordert']) AND $row['gefordert'] == '3'){ echo " checked "; } echo">3
|
echo " checked ";
|
||||||
<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
|
echo ">1
|
||||||
<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='2'";
|
||||||
<input type='radio' name='gefordert' value='7'"; if(isset($row['gefordert']) AND $row['gefordert'] == '7'){ echo " checked "; } echo">7
|
if (isset($row['gefordert']) and $row['gefordert'] == '2') {
|
||||||
<input type='radio' name='gefordert' value='8'"; if(isset($row['gefordert']) AND $row['gefordert'] == '8'){ echo " checked "; } echo">8
|
echo " checked ";
|
||||||
<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
|
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>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
@ -794,16 +1010,56 @@ function fetch_select(){
|
|||||||
etwas dazulernen können </td>
|
etwas dazulernen können </td>
|
||||||
<td width='56%' style='border-right-style: solid; border-right-width: 2px'>
|
<td width='56%' style='border-right-style: solid; border-right-width: 2px'>
|
||||||
|
|
||||||
<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='1'";
|
||||||
<input type='radio' name='dazulernen' value='2'"; if(isset($row['dazulernen']) AND$row['dazulernen'] == '2'){ echo " checked "; } echo">2
|
if (isset($row['dazulernen']) and $row['dazulernen'] == '1') {
|
||||||
<input type='radio' name='dazulernen' value='3'"; if(isset($row['dazulernen']) AND$row['dazulernen'] == '3'){ echo " checked "; } echo">3
|
echo " checked ";
|
||||||
<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
|
echo ">1
|
||||||
<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='2'";
|
||||||
<input type='radio' name='dazulernen' value='7'"; if(isset($row['dazulernen']) AND$row['dazulernen'] == '7'){ echo " checked "; } echo">7
|
if (isset($row['dazulernen']) and $row['dazulernen'] == '2') {
|
||||||
<input type='radio' name='dazulernen' value='8'"; if(isset($row['dazulernen']) AND$row['dazulernen'] == '8'){ echo " checked "; } echo">8
|
echo " checked ";
|
||||||
<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
|
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>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
@ -814,16 +1070,56 @@ function fetch_select(){
|
|||||||
keinerlei Probleme mit der Sprache </td>
|
keinerlei Probleme mit der Sprache </td>
|
||||||
<td width='56%' style='border-right-style: solid; border-right-width: 2px'>
|
<td width='56%' style='border-right-style: solid; border-right-width: 2px'>
|
||||||
|
|
||||||
<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='1'";
|
||||||
<input type='radio' name='sprachprobleme' value='2'"; if(isset($row['sprachprobleme']) AND $row['sprachprobleme'] == '2'){ echo " checked "; } echo">2
|
if (isset($row['sprachprobleme']) and $row['sprachprobleme'] == '1') {
|
||||||
<input type='radio' name='sprachprobleme' value='3'"; if(isset($row['sprachprobleme']) AND $row['sprachprobleme'] == '3'){ echo " checked "; } echo">3
|
echo " checked ";
|
||||||
<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
|
echo ">1
|
||||||
<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='2'";
|
||||||
<input type='radio' name='sprachprobleme' value='7'"; if(isset($row['sprachprobleme']) AND $row['sprachprobleme'] == '7'){ echo " checked "; } echo">7
|
if (isset($row['sprachprobleme']) and $row['sprachprobleme'] == '2') {
|
||||||
<input type='radio' name='sprachprobleme' value='8'"; if(isset($row['sprachprobleme']) AND $row['sprachprobleme'] == '8'){ echo " checked "; } echo">8
|
echo " checked ";
|
||||||
<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
|
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>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
@ -833,16 +1129,56 @@ function fetch_select(){
|
|||||||
Ich konnte viele gute Erfahrungen sammeln </td>
|
Ich konnte viele gute Erfahrungen sammeln </td>
|
||||||
<td width='56%' style='border-right-style: solid; border-right-width: 2px'>
|
<td width='56%' style='border-right-style: solid; border-right-width: 2px'>
|
||||||
|
|
||||||
<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='1'";
|
||||||
<input type='radio' name='erfahrungen' value='2'"; if(isset($row['erfahrungen']) AND $row['erfahrungen'] == '2'){ echo " checked "; } echo">2
|
if (isset($row['erfahrungen']) and $row['erfahrungen'] == '1') {
|
||||||
<input type='radio' name='erfahrungen' value='3'"; if(isset($row['erfahrungen']) AND $row['erfahrungen'] == '3'){ echo " checked "; } echo">3
|
echo " checked ";
|
||||||
<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
|
echo ">1
|
||||||
<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='2'";
|
||||||
<input type='radio' name='erfahrungen' value='7'"; if(isset($row['erfahrungen']) AND $row['erfahrungen'] == '7'){ echo " checked "; } echo">7
|
if (isset($row['erfahrungen']) and $row['erfahrungen'] == '2') {
|
||||||
<input type='radio' name='erfahrungen' value='8'"; if(isset($row['erfahrungen']) AND $row['erfahrungen'] == '8'){ echo " checked "; } echo">8
|
echo " checked ";
|
||||||
<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
|
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>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
@ -1020,13 +1356,13 @@ $mail=$_POST['mail'];
|
|||||||
$mail = '';
|
$mail = '';
|
||||||
}
|
}
|
||||||
|
|
||||||
if(isset($_POST['eiver_rueckfr']) AND $_POST['eiver_rueckfr'] != ''){
|
if (isset($_POST['eiver_rueckfr']) and $_POST['eiver_rueckfr'] != '') {
|
||||||
$eiver_rueckfr = $_POST['eiver_rueckfr'];
|
$eiver_rueckfr = $_POST['eiver_rueckfr'];
|
||||||
} else {
|
} else {
|
||||||
$eiver_rueckfr = 'N';
|
$eiver_rueckfr = 'N';
|
||||||
}
|
}
|
||||||
|
|
||||||
if(isset($_POST['studiengang']) AND $_POST['studiengang'] != ''){
|
if (isset($_POST['studiengang']) and $_POST['studiengang'] != '') {
|
||||||
$studiengang = $_POST['studiengang'];
|
$studiengang = $_POST['studiengang'];
|
||||||
} else {
|
} else {
|
||||||
$studiengang = '';
|
$studiengang = '';
|
||||||
@ -1099,13 +1435,13 @@ if(!$sql){
|
|||||||
## Allgemein ##
|
## Allgemein ##
|
||||||
$sql = $db->query("DELETE FROM aesp_allgemein WHERE uid = '$uid1'");
|
$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'])){
|
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_von = "$_POST[von_jahr]-$_POST[von_monat]-$_POST[von_tag]";
|
||||||
} else {
|
} else {
|
||||||
$zeitraum_von = '';
|
$zeitraum_von = '';
|
||||||
}
|
}
|
||||||
|
|
||||||
if(isset($_POST['bis_jahr']) AND isset($_POST['bis_monat']) AND isset($_POST['bis_tag'])){
|
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]";
|
$zeitraum_bis = "$_POST[bis_jahr]-$_POST[bis_monat]-$_POST[bis_tag]";
|
||||||
} else {
|
} else {
|
||||||
$zeitraum_bis = '';
|
$zeitraum_bis = '';
|
||||||
@ -1476,7 +1812,4 @@ echo"
|
|||||||
</html>";
|
</html>";
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
?>
|
|
||||||
|
@ -124,4 +124,3 @@ a:hover.sub { font-family:Verdana;font-size:10px;color:#000000;text-decoration:u
|
|||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>";
|
</html>";
|
||||||
?>
|
|
Reference in New Issue
Block a user