here is a basic way to do it.
switch ($_GET['id']) {
case 'about':
include 'about.php';
break;
default:
news.php
break;
}
It should work, it isnt great but it should do the job. I suggest maybe doing a search for ?id=blah or something similar, as its popped up quite a lot this.