y si haces simplemente esto:
Código PHP:
Ver original<?php
include("menu.php");
switch($_GET['opcion']){
case uno: include("pagina1.php"); break;
case dos: include("pagina2.php"); break;
case tres: include("pagina3.php"); break;
default: include("pagina1php"); break;
}
?>
sALUDOS