Hallo, mein Name ist Jonas Leder. Ich bin aktuell Student an der Dualen Hochschule Baden-Württemberg in Mannheim Fachrichtung Angewandte Informatik.
query("SELECT * FROM posts order by id desc limit $homeMaxPost");
if ($result->num_rows > 0) {
while($row = $result->fetch_assoc()) {
$title = $row["title"];
$id = $row["id"];
$content = explode(" ", $row["content"]);
$contentNew = "";
if(count($content) > 800){
$temp = str_split($content, 800);
$contentNew = $temp[0];
$contentNew = $content . explode(" ", $temp[1])[0] . " ...";
} else {
$contentNew = $row["content"];
}
echo(<<
$title
$contentNew
EOF);
}
}
?>