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 @@