Просмотр файла app/modules/forum/print.php
<?php
$tid = param('tid');
$topic = DB::run() -> queryFetch("SELECT * FROM `topics` WHERE `id`=? LIMIT 1;", [$tid]);
if (empty($topic)) {
App::abort('default', 'Данной темы не существует!');
}
$querypost = DB::run() -> query("SELECT * FROM `posts` WHERE `topic_id`=? ORDER BY `time` ASC;", [$tid]);
$posts = $querypost->fetchAll();
App::view('forum/print', compact('topic', 'posts'));