j'ai un bout de code qui a un comportement étrange sous firefox.
J'utilise un include pour ajouter des pages.
Dans index.php:
<?php
include('maPage.php');
?>
Dans maPage.php, j'ai un tableau html tout simple...il s'affiche dans ie mais pas firefox!!
Code : Tout sélectionner
<table width="100%" border="1" cellspacing="0" cellpadding="0">
<tr>
<td> </td>
<td> </td>
</tr>
</table>
Code : Tout sélectionner
Du texte en début de fichier au dessus du tableau
<table width="100%" border="1" cellspacing="0" cellpadding="0">
<tr>
<td> </td>
<td> </td>
</tr>
</table>
Quelqu'un aurait il une explication à cela?