Kleine Fehlerkorrekturen

This commit is contained in:
aschwarz
2023-04-14 11:57:49 +02:00
parent 7055693182
commit 4f3a51daf1
3 changed files with 8 additions and 8 deletions

View File

@ -28,7 +28,7 @@ $anm_schluss = $db->query("SELECT DATE_Format(spt_einsicht, '%Y-%m-%d')AS datum,
$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 "
@ -99,7 +99,7 @@ exit;
$psn_abg = $db->query("SELECT uid FROM spt_wunsch WHERE uid=\"$uid1\"");
$abgegeben = $psn_abg->fetch_array();
if ($abgegeben[uid] == ""){
if ($abgegeben['uid'] == ""){
echo "
<html>
@ -269,4 +269,4 @@ echo"
</html>";
?>
?>