kleine constant Fehler geändert
This commit is contained in:
parent
7c25e6c4d2
commit
d28a0a86d2
@ -263,7 +263,7 @@ echo "
|
||||
exit;
|
||||
}
|
||||
|
||||
if ($_POST['doz_uid'] != $row[doz_uid]) {
|
||||
if ($_POST['doz_uid'] != $row['doz_uid']) {
|
||||
echo"
|
||||
<html>
|
||||
<head>
|
||||
@ -329,10 +329,10 @@ exit;
|
||||
}
|
||||
|
||||
$passwd = md5($_POST['doz_pwd']);
|
||||
if ($passwd != $row[doz_pwd]){
|
||||
if ($passwd != $row['doz_pwd']){
|
||||
|
||||
setcookie("doz_uid1","");
|
||||
setcookie("doz_uid1",$row[doz_uid]);
|
||||
setcookie("doz_uid1",$row['doz_uid']);
|
||||
|
||||
echo "
|
||||
<html>
|
||||
@ -402,7 +402,7 @@ exit;
|
||||
}
|
||||
|
||||
setcookie("doz_uid1","");
|
||||
setcookie("doz_uid1",$row[doz_uid]);
|
||||
setcookie("doz_uid1",$row['doz_uid']);
|
||||
|
||||
echo "
|
||||
<meta http-equiv=\"refresh\" content=\"0; URL=index_doz.htm\">
|
||||
|
@ -85,7 +85,7 @@ case "jahr":
|
||||
|
||||
|
||||
setcookie("jahrgang","");
|
||||
setcookie("jahrgang",$_POST[jahr]);
|
||||
setcookie("jahrgang",$_POST['jahr']);
|
||||
|
||||
echo "
|
||||
<meta http-equiv=\"refresh\" content=\"0; URL=hauptframe_jahr.php\">";
|
||||
|
@ -22,7 +22,7 @@ $anm_schluss = $db->query("SELECT DATE_Format(fachprojekt_einsicht, '%Y-%m-%d')A
|
||||
$row_schluss = $anm_schluss->fetch_array(); // Herausfinden des Beginndatums des vom Studenten gewählten Kurses
|
||||
|
||||
$a = strtotime ($heute_format); //Umrechnung des Fristgrenztages in eine Zahl
|
||||
$b = strtotime ($row_schluss[datum]); // Umrechnung des Beginndatums in eine Zahl
|
||||
$b = strtotime ($row_schluss['datum']); // Umrechnung des Beginndatums in eine Zahl
|
||||
|
||||
if ($a < $b){
|
||||
echo "
|
||||
@ -186,7 +186,7 @@ echo"
|
||||
</td>
|
||||
<td width=\"12%\" align=\"center\" style=\"border-left-style: none; border-left-width: medium; border-right-style: none; border-right-width: medium; border-top-style: none; border-top-width: medium; border-bottom-style: solid; border-bottom-width: 1px\">
|
||||
<p>";
|
||||
$split = str_split($row[Zweig]);
|
||||
$split = str_split($row['Zweig']);
|
||||
$vt1 = $split[0]; // I
|
||||
$vt2 = $split[1]; // R
|
||||
$vt3 = $split[2]; // F
|
||||
@ -205,10 +205,10 @@ echo"
|
||||
$dat_vt4 = $db->query("SELECT fachprojekt_einsicht, DATE_Format(fachprojekt_einsicht, '%d.%m.%Y') fach_einsicht_form FROM fach_ende WHERE stg='$vt4' AND jahrgang='$jahrgang'");
|
||||
$row_dat4 = $dat_vt4->fetch_array();
|
||||
|
||||
$d1 = strtotime ($row_dat1[fachprojekt_einsicht]);
|
||||
$d2 = strtotime ($row_dat2[fachprojekt_einsicht]);
|
||||
$d3 = strtotime ($row_dat3[fachprojekt_einsicht]);
|
||||
$d4 = strtotime ($row_dat4[fachprojekt_einsicht]);
|
||||
$d1 = strtotime ($row_dat1['fachprojekt_einsicht']);
|
||||
$d2 = strtotime ($row_dat2['fachprojekt_einsicht']);
|
||||
$d3 = strtotime ($row_dat3['fachprojekt_einsicht']);
|
||||
$d4 = strtotime ($row_dat4['fachprojekt_einsicht']);
|
||||
|
||||
|
||||
if($d2!=''){
|
||||
@ -290,7 +290,7 @@ $fach = $sel_fach->fetch_array();
|
||||
$sel_versand = $db->query("SELECT doz_vorname, doz_name, doz_mail FROM doz where doz_uid=\"$doz_uid1\""); // ausw_ausg = fachprojekt.id
|
||||
$versand = $sel_versand->fetch_array();
|
||||
|
||||
$name = $versand[doz_vorname]." ".$versand[doz_name]; //Name zusammensetzen und in der Variablen speichern
|
||||
$name = $versand['doz_vorname']." ".$versand['doz_name']; //Name zusammensetzen und in der Variablen speichern
|
||||
echo "
|
||||
<html>
|
||||
<head>
|
||||
|
Loading…
x
Reference in New Issue
Block a user