forked from root/threadr.lostcave.ddnss.de
AM I THAT STUPID
parent
36c276f682
commit
d72da5ffef
|
@ -6,19 +6,19 @@ 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(array("id"=>$id));
|
$statement->execute(array("id"=>$id));
|
||||||
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>";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!$result) {
|
if (!$result) {
|
||||||
|
|
Loading…
Reference in New Issue