Código PHP:
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Sociedad de psicología</title>
</head>
<body>
<div id="main">
<table width="781" align="center" cellpadding="0" cellspacing="0">
<tr>
<td colspan="3">
<?php
include("includes/header.php"); // la página con la cabecera
?>
</td>
</tr>
<tr>
<td width="132" valign="top">
<?php
include("includes/menu.php"); // el menú de la izquierda
?>
</td>
<td>
<?
$id=$_GET['id'];
switch ($id) {
case 1:
include("actualidad.php");
break;
case 2:
include("articulos.php");
break;
case 3:
include("aspectoslegales.php");
break;
case 4:
include("comisiondetrabajo.php");
break;
case 5:
include("comisiondirec.php");
break;
case 6:
include("editorial.php");
break;
case 7:
include("fundadores.php");
break;
case 8:
include("socios.php");
break;
default:
include("default.php");
// estado default .. nos determina el estado
// "si no es ninguna opcion de las anteriores".
}
?>
</td>
</tr>
<tr>
<td colspan="3">
<?php
include("includes/footer.php"); //el pie de página
?>
</td>
</tr>
</table>
</div>
</body>
</html>
Código PHP:
<table width="151" border="0">
<tr>
<th width="141" bgcolor="#0033FF" scope="row"> </th>
</tr>
<tr>
<th align="left" bgcolor="#0033FF" scope="row"><a href="index.php?id=editorial" title="Editorial">Editorial</a></th>
</tr>
<tr>
<th align="left" bgcolor="#0033FF" scope="row"><a href="index.php?id=fundadores" title="Fundadores">Fundadores</a></th>
</tr>
<tr>
<th align="left" bgcolor="#0033FF" scope="row"><a href="index.php?id=comisiondirec" title="Comisión Directiva">Comisión Directiva </a></th>
</tr>
<tr>
<th align="left" bgcolor="#0033FF" scope="row"><a href="index.php?id=comisiondetrabajo" title="Comisión de trabajo">Comisión de trabajo</a></th>
</tr>
<tr>
<th align="left" bgcolor="#0033FF" scope="row"><a href="index.php?id=articulos" title="Articulos">Articulos</a></th>
</tr>
<tr>
<th align="left" bgcolor="#0033FF" scope="row"><a href="index.php?id=actualidad" title="Actualidad">Actualidad</a></th>
</tr>
<tr>
<th align="left" bgcolor="#0033FF" scope="row"><a href="index.php?id=aspectoslegales" title="Aspectos Legales ">Aspectos Legales </a></th>
</tr>
<tr>
<th align="left" bgcolor="#0033FF" scope="row"><a href="index.php?id=socios" title="Socios">Socios</a></th>
</tr>
</table>
gracias!