$section = $_GET['section'];
switch($section)
{
default:
case 'news': include("news.php"); break;
case 'about': include("about.php"); break;
case 'projects': include("projects.php"); break;
case 'files': include("files.php"); break;
//case 'links': include("links.php"); break;
}
?>