"Blog", "fields" => [ "title" => Type::string(), "content" => Type::string(), "date" => Type::string(), "id" => Type::string() ], ]); function blogPost($id, $conn) { $id = $conn->real_escape_string($id); $result = $conn->query("SELECT * FROM posts WHERE id=$id"); if ($result->num_rows > 0) { $row = $result->fetch_assoc(); } else { return [ "title" => "Nicht Gefunden", "content" => "Post wurde nicht gefunden", "date" => "2000-01-01 00:00:00", "id" => "-1" ]; } $title = $row["title"]; $content = $row["content"]; $date = $row["date"]; $id = $row["id"]; return [ "title" => $title, "content" => $content, "date" => $date, "id" => $id ]; }