En mi pagina principal tengo una tabla de tres filas y la fila del medio se divide en dos
una para el cuerpo y la otra para el menu.
La primera fila es el header y la tercera es el footer.
Esta es mi pagina principal
Código PHP:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<center><table width="950" border="1">
<tr>
<td colspan="2"><?php include('New_Header.html');?> </td>
</tr>
<tr>
<td width="75%"> </td>
<td width="25%"> </td>
</tr>
<tr>
<td colspan="2"> </td>
</tr>
</table>
<center>
</body>
</html>
Igual para las otras?????? Y cualquier comentario q me puedan ayudar con esto se los agradeceria.