kleine constant Fehler geändert

This commit is contained in:
aschwarz
2023-02-24 09:11:35 +01:00
parent ac75a3e988
commit 5a591ee6f3
12 changed files with 51 additions and 51 deletions

View File

@ -31,7 +31,7 @@ $anm_schluss = $db->query("SELECT DATE_Format(anmeldeschluss, '%d.%m.%Y um %H:%i
$row_schluss = $anm_schluss->fetch_array(); // Herausfinden des Beginn- Schlussdatums
$a = strtotime ($heute_format); //Umrechnung des Fristgrenztages in eine Zahl
$b = strtotime ($row_schluss[enddatum]); // Umrechnung des Enddatums in eine Zahl
$b = strtotime ($row_schluss['enddatum']); // Umrechnung des Enddatums in eine Zahl
@ -44,7 +44,7 @@ $res2 = $db->query("SELECT distinct status
LIMIT 1");
$stud_status = $res2->fetch_array();
if($stud_status[status] != '0'){
if($stud_status['status'] != '0'){
if ($a <= $b){
echo "
@ -175,4 +175,4 @@ if($stud_status[status] != '0'){
</body>
</html>";
?>
?>