diff --git a/add_material.php b/add_material.php index ff74bdf..2e3dee5 100644 --- a/add_material.php +++ b/add_material.php @@ -1,60 +1,60 @@ -connect_error) { - $response['success'] = false; - $response['message'] = 'Verbindung zur Datenbank fehlgeschlagen: ' . $conn->connect_error; - echo json_encode($response); // Fehlermeldung als JSON zurückgeben und das Skript beenden - exit(); - } - - $sql = "INSERT INTO materials (item_name, manufacturer, location, amount_should, amount_is, expiration_date, barcode, image, email) - VALUES ('$item_name', '$manufacturer', '$location', $amount_should, $amount_is, '$expiration_date', '$barcode', '$image', '$email')"; - - if ($conn->query($sql) === TRUE) { - $response['success'] = true; - $response['message'] = 'Neuer Artikel wurde erfolgreich hinzugefügt.'; - } else { - $response['success'] = false; - $response['message'] = 'Fehler beim Hinzufügen des Artikels: ' . $conn->error; - } - - $conn->close(); - - // JSON-Antwort zurückgeben - echo json_encode($response); -} -?> +connect_error) { + $response['success'] = false; + $response['message'] = 'Verbindung zur Datenbank fehlgeschlagen: ' . $conn->connect_error; + echo json_encode($response); // Fehlermeldung als JSON zurückgeben und das Skript beenden + exit(); + } + + // SQL-Abfrage mit dem Wert von $notification_days + $sql = "INSERT INTO materials (item_name, manufacturer, location, amount_should, amount_is, expiration_date, notification_days, barcode, image, email) + VALUES ('$item_name', '$manufacturer', '$location', $amount_should, $amount_is, '$expiration_date', $notification_days, '$barcode', '$image', '$email')"; + + if ($conn->query($sql) === TRUE) { + $response['success'] = true; + $response['message'] = 'Neuer Artikel wurde erfolgreich hinzugefügt.'; + } else { + $response['success'] = false; + $response['message'] = 'Fehler beim Hinzufügen des Artikels: ' . $conn->error; + } + + $conn->close(); + + // JSON-Antwort zurückgeben + echo json_encode($response); +} +?>