Okay I'm currently working on a new template, and instead of making a hole new page for every thing I'm setting it up just it just changes the one area.
<?php switch($_GET['id'])
{
default:
include('home.php');
break;
case 'news':
include('news.php');
break;
case 'forums':
include('forums.php');
break;
}
?>
and I have the links set-up like
<a href="index.php?id=news">News</a>[quote][/quote]
I have it set-up like that but it doesn't want to work 🙁