pero se supone que tome el codigo de los include en lugar de los frames, lo metí en una tabla y a uno de esos le puse un swicth para hacer el menu, pero no funka, si alguno me diese una orientacion de como hacerlo, por que ando medio perdio
![lloron](http://static.forosdelweb.com/fdwtheme/images/smilies/chillando.png)
de paso les dejo el codigo, que creí taba bien, pero parece tener too mal :S
index.php
Código:
<html> <body> <table width="100%" border="1"> <tr> <td colspan="2"><include virtual="superior.htm" ></td> </tr> <tr> <td width="20%"><include virtual="menu0.php" ></td> <td width="60%"> switch ($Seccion) { case 'Enlaces': include("enlaces.php"); break; case 'Banners': include("Banners/index.php"); break; case 'Contactame': include("contacto.php"); break; default: include("principal.php"); break; } <td width="20%"><include virtual="autentificar.php" ></td> </tr> </table> </body> </html>