bindValue('forum_id', (int)($_GET['f'] ?? 0)); $forum = $getForum->execute() ? $getForum->fetch(PDO::FETCH_ASSOC) : false; if (!$forum) { echo render_error(404); break; } echo tpl_render('manage.forum.forum', compact('forum')); break; }