Sorry for the double-post, but I found the solution (damn you, PHP5!):
Right after </head> goes:
PHP Code:
<?php $id = $_GET['id']; ?>
And where you want the content to appear:
PHP Code:
<?php
if (!isset($id)){
include("home.php");
}
else{
include("$id.php");
}
?>