BodgeMaster 2020-03-08 15:22:07 +01:00
commit 1afc303f09
1 changed files with 12 additions and 12 deletions

View File

@ -3,21 +3,21 @@ $pdo = new PDO('mysql:host=localhost;dbname=web', 'webstuff', 'Schei// auf Pa$$w
$error = false; $error = false;
$error_message = ""; $error_message = "";
if (!$error) { if (!$error) {
$statement = $pdo->prepare("SELECT * FROM posts WHERE board_id=$id ORDER BY post_time asc"); $statement = $pdo->prepare("SELECT * FROM posts WHERE board_id='$id' ORDER BY post_time asc");
$statement->execute(); $statement->execute();
foreach($statement->fetchAll() as $ROW) { foreach($statement->fetchAll() as $ROW) {
echo "<section>" echo "<section>"
echo " <h1>$ROW[id]</h1>" echo "<h1>$ROW[id]</h1>"
echo " <article>" echo "<article>"
echo " <header>" echo "<header>"
echo " <div>" echo "<div>"
echo " <p class='beige'>$ROW[user_id] <time datetime='$ROW[post_time]'>$ROW[post_time]</time></p>" echo "<p class='beige'>$ROW[user_id] <time datetime='$ROW[post_time]'>$ROW[post_time]</time></p>"
echo " </div>" echo "</div>"
echo " </header>" echo "</header>"
echo " <div class='postcontent'>" echo "<div class='postcontent'>"
echo " <p>$ROW[content]</p>" echo "<p>$ROW[content]</p>"
echo " </div>" echo "</div>"
echo " </article>" echo "</article>"
echo "</section>" echo "</section>"
} }
} }