No te entiendo muy bien pero prueba con esto a ver si es lo que quieres
Código PHP:
<div>
<a href="?id=" title="Cero">Inicio</a> //deja la id vacia
<a href="?id=01" title="Uno">Sección 1</a>
<a href="?id=02" title="Dos">Sección 2</a>
<a href="?id=03" title="Tres">Sección 3</a>
<a href="?id=04" title="Cuatro">Sección 4</a>
<a href="?id=05" title="Cinco">Sección 5</a>
<a href="?id=06" title="Seis">Sección 6</a>
<a href="?id=07" title="Siete">Sección 7</a>
<a href="?id=08" title="Contáctenos">Contáctenos</a>
</div>
<?
$id=$_GET['id'];
switch ($id) {
case 01:
include("01.shtml");
break;
case 02:
include("02.shtml");
break;
case 03:
include("03.shtml");
break;
case 04:
include("04.shtml");
break;
case 05:
include("05.shtml");
break;
case 06:
include("06.shtml");
break;
case 07:
include("07.shtml");
break;
case 08:
include("Contacto.shtml"); //ten cuidado con los nombres de las páginas con mayusculas y minúsculas
break;
default:
include("Principal.shtml"); //ten cuidado con los nombres de las páginas con mayusculas y minúsculas
}
?>
Un saludo