codice:
<?
$page=$_GET['pg'];
if (!$page){$url="index.html";}
else {
switch($page){
case 'primo':
$url='primo.html';
break;
case 'secondo':
$url='secondo.htm';
break;
....ecc...
}
}
if (!file_exists($url)){$url='error.htm'}
else {include($url);}
?>
Va bene questo codice?? ( i link sono index.php?pg=**)