<?php $main_content = ''; include("pages/" . $subtopic . ".php"); { $_REQUEST['subtopic'] = "home"; } ?>
w layout.php jest:
<?php $main_content = ''; include("pages/" . $subtopic . ".php"); { $_REQUEST['subtopic'] = "home"; } ?>
$page = $_GET['page'];
<?php $main_content = ''; $page = $_GET['page']; include("pages/" . $page . ".php"); { $_REQUEST['page'] = "home"; } ?>