kleine constant Fehler geändert

This commit is contained in:
aschwarz
2023-02-27 13:00:51 +01:00
parent 10358865cb
commit 41585c1390
2 changed files with 6 additions and 6 deletions

View File

@ -23,8 +23,8 @@ $anm_schluss = $db->query("SELECT DATE_Format(kompetenzen_beginn, '%Y-%m-%d')AS
$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[enddatum]); // Umrechnung des Enddatums in eine Zahl
$c = strtotime ($row_schluss[beginndatum]); // Umrechnung des Beginndatums in eine Zahl
$b = strtotime ($row_schluss['enddatum']); // Umrechnung des Enddatums in eine Zahl
$c = strtotime ($row_schluss['beginndatum']); // Umrechnung des Beginndatums in eine Zahl
if ($a < $c){
echo "
@ -920,4 +920,4 @@ include("kurs/wpf/erg_auswahl1.php"); // Auswertung der Erstwahl der Soziale
} // If Anweisung Action-Abfrage
?>
?>