Compare commits

..

No commits in common. "34ae68bfdcf19cccc0f02702de59c831636146f0" and "bbb5ebcbac50ed4d559445e50da8100466991b15" have entirely different histories.

View File

@ -69,23 +69,7 @@ class TagesplanModel extends Database
public function getGerichteOnTag() public function getGerichteOnTag()
{ {
$pdo = $this->linkDB();
$datum = $_GET["datum"];
$sql = "SELECT * FROM Gericht LEFT JOIN GibtsAm ON Gericht.id = GibtsAm.gid LEFT JOIN Tagesplan ON GibtsAm.tid = Tagesplan.id WHERE Tagesplan.datum = $datum";
try {
$stmt = $pdo->prepare($sql);
$stmt->execute();
} catch (\PDOException $e) {
echo $sql . " This do be faulty";
return false;
}
$result = $stmt->fetchAll(\PDO::FETCH_ASSOC);
return $result;
} }
} }