<?
switch ($HTTP_GET_VARS[id]) {
//Default - case
default:
include "index.php";
break;
case 'about':
include 'about.php';
break;
//Downloads - case
case 'downloads':
include 'downloads.php';
break;
}
?>
Ik zet deze script in een pagina genaamd id.php en include id.php in mijn index.php maar index.php?id=about werkt dan niet... hoe komt dat? wat is hier fout aan?
1.277 views