Nadal nic nie działa....
Przy czym chciałbym zaznaczyć że moja struktura strony wygląda tak .,,
/config
/banner.php
/footer.php
/head.php
/header.php
/images
/menu
/page
/content.php
/group.php
/upload
a plik index następująco...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<?php
include_once('config/head.php');
include_once('config/header.php');
include_once('config/banner.php');
include_once('menu/menu.php');
echo"<div id='templatmeo_wrapper'>";
echo"<div id='templatemo_content_wrapper'>";
include_once('menu/sb_left.php');
if(empty($_GET['id']) or
$_GET['id']=="content"){ include("page/content.php");
}
else {
if($_GET['id']=="content"){
include("page/content.php");
}
if($_GET['id']=="timetable"){
include("page/timetable.php");
}
if($_GET['id']=="group"){
include("page/group.php");
}
}
include ('menu/sb_right.php'); ?>
<div class="cleaner"></div>
</div>
</div>
<?php include('config/footer.php'); ?>