threadr.lostcave.ddnss.de/threadr/board/board.php

42 lines
1.5 KiB
PHP
Raw Normal View History

2020-03-08 16:15:23 +01:00
<?php
2021-09-02 17:01:28 +02:00
$pdo = new PDO('mysql:host=%DB_SERVER%;dbname=%DB_NAME%', '%DB_USERNAME%', '%DB_PASSWORD%');
2020-03-12 23:03:13 +01:00
$statement = $pdo->prepare("SELECT * FROM posts WHERE board_id=:bid ORDER BY post_time asc");
$statement->execute(array("bid"=>$id));
foreach($statement->fetchAll() as $ROW) {
2021-09-05 08:39:32 +02:00
// get post creator
2020-03-12 23:03:13 +01:00
$statement = $pdo->prepare("SELECT * FROM users WHERE id=:uid");
$statement->execute(array("uid"=>$ROW[user_id]));
2020-03-12 23:14:03 +01:00
$post_creator = $statement->fetch();
2021-09-05 08:39:32 +02:00
// get post content and make sure it doesn't mess with the website
2021-09-07 07:07:00 +02:00
$post_id = $ROW['id'];
$post_title = htmlspecialchars($ROW['title']);
2020-03-12 23:14:03 +01:00
$post_creator_name = htmlspecialchars($post_creator['name']);
2021-09-07 07:07:00 +02:00
$post_time = htmlspecialchars($ROW['post_time']);
$post_content = htmlspecialchars($ROW['content']);
2020-03-12 23:14:03 +01:00
// add line breaks to post content, to be replaced with proper makrdown support in the future (see #44)
2021-09-02 05:11:58 +02:00
$newlines = array("\r\n", "\n\r", "\r", "\n"); // two-character newlines first to prevent placing two line breaks instead of one
$post_content = str_replace($newlines, "<br />", $post_content);
2021-09-05 08:39:32 +02:00
// post id of the original post this is a reply to, negative numbers mean no reply
$reply_to = $ROW['reply_to'];
2021-09-07 07:07:00 +02:00
echo "<section id=\"$post_id\" >
2020-03-12 23:14:03 +01:00
<h1>$post_title</h1>
<article>
<header>
<div>
<p class='beige'> $post_creator_name <time datetime='$post_time'>$post_time</time></p>
</div>
</header>
<div class='postcontent'>
<p>$post_content</p>
</div>
</article>
2021-09-05 08:51:10 +02:00
</section>";
}
?>