Le seul truc qui selon moi pourrait causer un prob c'est le width=650 dans le deuxième <tr>. je ne sais pas si c'est permis de déclarer une colonne comme ça, en tous cas avec d'autres colonnes déjà déclarées auparavant. Essaye plutôt <td colspan=3> ou alors, refais les colonnes en fonction du premier <tr>.
Soit :
<table border=1 width=950 height=600 cellpadding=0 cellspacing=0>
<tr>
<td width=150 height=600 rowspan=2 valign="top"><? include ('menu.php3'; ?></td>
<td width=650 height=50>TITRE</td>
<td width=150 height=600 rowspan=2 valign="top"><? include ('recherche.php3'; ?></td>
</tr>
<tr>
<td colspan=3 height="550" valign="top"><? include ($load); ?></td>
</tr>
</table>
ou
<table border=1 width=950 height=600 cellpadding=0 cellspacing=0>
<tr>
<td width=150 height=600 rowspan=2 valign="top"><? include ('menu.php3'; ?></td>
<td width=650 height=50>TITRE</td>
<td width=150 height=600 rowspan=2 valign="top"><? include ('recherche.php3'; ?></td>
</tr>
<tr>
<td width=150>Gnagna</td>
<td width="650" height="550" valign="top"><? include ($load); ?></td>
<td width=150>Gnégné</td>
</tr>
</table>
[edtdd]--Message édité par HORNY-GRANDCORNU--[/edtdd]