Forum -
Platinus Forum » " . $result["Name"] . "";?>
{FORUM_SECTION_NAME} {FORUM_SECTION_DESCRIPTION}
EOT; $sections = $GLOBALS["sql"]->prepare("SELECT * FROM `forum-sections`"); $sections->execute(); foreach($sections as $section){ if($section["TopicId"] == $_GET["group"]){ $newSection = str_replace("{FORUM_SECTION_NAME}",$section["Name"],$sectionTemplate); $newSection = str_replace("{FORUM_SECTION_DESCRIPTION}",$section["Description"],$newSection); $newSection = str_replace("{FORUM_SECTION_LINK}","https://" . $_SERVER["HTTP_HOST"] . "/forum/ShowForum?topic=" . $section["id"],$newSection); echo $newSection; } } ?>