Codice config.php
codice:
<?php
$pagina_default = 1;
$pagine = array(
"errore.htm", //0
"aggiornamenti.htm", //1
"prova.htm //2

);

// non toccare nulla qui sotto!!
$x = (isset($_GET['x']))?$_GET['x']:$pagina_default;
if(!is_numeric($x)) {
$x = 0;
}
if($x >= count($pagine)) {
$x = 0;
}
$body = $pagine[$x]; 


?>
Codice index.php
codice:
<?php
include("config.php");
?>
<html>
<head>
<title>Index</title>
</head>
<body>

<?php include($body); ?>

</body>
</html>