CODE
<?php
if($id == NULL) {
include('home.php');
} else {
include(''.$id.'.php');
}
?>
if($id == NULL) {
include('home.php');
} else {
include(''.$id.'.php');
}
?>
let's break the code a little:
CODE
if($id == NULL)
If the $ID has no ?id=test or something it will include the home.php file
CODE
include('home.php');
else it will include the ?id=download and the file will be download.php
CODE
include(''.$id.'.php');