altra piccola cosa: nella pagina che deve essere inclusa è inutile mettere i vari meta & Co.
invece di:
Codice PHP:
<html><head>
<meta http-equiv="Content-Language" content="it">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>New Page 3</title>
</head>
<body>
<div align="center">
<center>
<table border="1" width="800" height="276">
<tr>
<td width="790" colspan="3" height="19">
<p align="center">LOGO</td>
</tr>
<tr>
<td width="116" height="245">MENU</td>
<td width="518" height="245"></td>
<td width="144" height="245">TABELLA</td>
</tr>
</table>
</center>
</div>
</body></html>
basta:
Codice PHP:
<table border="1" width="800" height="276">
<tr>
<td width="790" colspan="3" height="19">
<p align="center">LOGO</td>
</tr>
<tr>
<td width="116" height="245">MENU</td>
<td width="518" height="245"></td>
<td width="144" height="245">TABELLA</td>
</tr>
</table>
il <?php include... ?> lo puoi lasciare fuori dalla tabella che è gia presente nella pagina da includere
altrimenti lo includi all'interno della tabella e toglio <table></table> dalla pagina da includere
a occhio e croce... poi nn so, fa un par di prove ^_^