kleine constant Fehler geändert

This commit is contained in:
aschwarz 2023-02-27 15:48:24 +01:00
parent 3aa76070e9
commit b41c65471a
2 changed files with 6 additions and 6 deletions

View File

@ -16,7 +16,7 @@ $anm_schluss = $db->query("SELECT DATE_Format(proseminar_einsicht, '%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[datum]); // Umrechnung des Beginndatums in eine Zahl
$b = strtotime ($row_schluss['datum']); // Umrechnung des Beginndatums in eine Zahl
if ($a < $b){
echo "
@ -87,7 +87,7 @@ exit;
$psn_abg = $db->query("SELECT uid FROM pros_wunsch WHERE uid=\"$uid1\"");
$abgegeben = $psn_abg->fetch_array();
if ($abgegeben[uid] == ""){
if ($abgegeben['uid'] == ""){
echo "
<html>
@ -291,4 +291,4 @@ while ($row2 = $result2->fetch_array()){
$return = @mail($empfaenger, $betreff, $text, $headers);
}
}
?>
?>

View File

@ -16,7 +16,7 @@ $anm_schluss = $db->query("SELECT DATE_Format(proseminar_einsicht, '%Y-%m-%d')AS
$row_schluss = $anm_schluss->fetch_array(); // Herausfinden des Beginndatums des vom Studenten gew&auml;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 "
@ -87,7 +87,7 @@ exit;
$psn_abg = $db->query("SELECT uid FROM pros_wunsch WHERE uid=\"$uid1\"");
$abgegeben = $psn_abg->fetch_array();
if ($abgegeben[uid] == ""){
if ($abgegeben['uid'] == ""){
echo "
<html>
@ -233,4 +233,4 @@ echo"
</html>";
?>
?>