From 7b55e5002979583d21d7e4256150fed8848ac47a Mon Sep 17 00:00:00 2001 From: pbs2h22aal Date: Sat, 13 Jan 2024 15:51:38 +0100 Subject: [PATCH] SvenControllerUndModellFertigFertig --- Controller/BestellungController.php | 2 +- Controller/GerichtController.php | 2 +- Model/BestellungModel.php | 12 ++++++++---- Model/GerichtModel.php | 2 ++ 4 files changed, 12 insertions(+), 6 deletions(-) diff --git a/Controller/BestellungController.php b/Controller/BestellungController.php index 5f74cc0..1b2a438 100644 --- a/Controller/BestellungController.php +++ b/Controller/BestellungController.php @@ -1,6 +1,6 @@ linkDB(); - $sql = "SELECT * FROM Bestellung"; + $sql = "SELECT Bestellung.id, Bestellung.istBezahlt, Bestellung.bestelldatum, Bestellung.gesamtpreis, Bestellung.kid FROM Bestellung"; $params = array(); //Ist eine id angegeben wird der Datensatz in der Datenbank gesucht if($id !== false){ - $sql .= " WHERE id = :id"; - $params["id"] = $id; + $sql .= " INNER JOIN Kind k ON k.id = kid INNER JOIN Benutzerkonto b ON b.id = bid"; + $sql .= " WHERE bid = :bid"; + $params["bid"] = $id; } + //Ausführen des SQL befehls try { $stmt = $pdo -> prepare($sql); diff --git a/Model/GerichtModel.php b/Model/GerichtModel.php index 61a1027..80ce3ad 100644 --- a/Model/GerichtModel.php +++ b/Model/GerichtModel.php @@ -1,4 +1,6 @@