
|
if(isset($_GET['ItemID']))
$ItemID = $_GET['ItemID'];
if(isset($ItemID))
{
if( $ItemID == root OR
$ItemID == english OR
$ItemID == stemadvies OR
$ItemID == boekje OR
$ItemID == nieuwsbrief OR
$ItemID == headlines OR
$ItemID == programma OR
$ItemID == faq OR
$ItemID == kandidaten OR
$ItemID == wiezijnwij OR
$ItemID == lid OR
$ItemID == contact OR
$ItemID == achtergrond OR
$ItemID == links OR
$ItemID == agenda OR
$ItemID == scholieren)
include "include/$ItemID.php";
else
include "include/notfound.php";
}
else
include "include/root.php";
?>
|
|