1 2 3 4 5 6 7 8 9 10 11 12 13
<?php use mystic\forum\orm\Topic; $formId = "addpost"; $topicId = $_GET["topic"] ?? throw new Exception("Missing topic id"); $topic = new Topic(); $topic->id = $topicId; if (!$db->fetch($topic)) { http_response_code(404); msg_error("No topic exists with this id"); exit; }