25-06-2007, 02:03 PM
d'apres ce que j'ai pu voir, tu as inséré d'autres </tr><tr>, et donc ça interfere...
comme solution, ce que tu pourrais faire (c'est rapidement fait, mais c'est pas propre)
comme solution, ce que tu pourrais faire (c'est rapidement fait, mais c'est pas propre)
Code PHP :
<?php
echo '<table border="0" cellpadding="0" cellspacing="0" id="Tableau_01" ><tr>';
$cpt = 0; // le compteur
while ($data = mysql_fetch_array($sq)) {
$cpt++;
if ($cpt == 5) {
echo '</tr><tr>'; // on ouvre une nouvelle ligne
$cpt = 1;
}
?>
<td>
<table><tr>
<td>
<img src="images/cqdreblog8_01.gif" width="10" height="37" alt=""></td>
<td background="images/cqdreblog8_02.gif" width="150" height="37"><div align="center"><span class="Style1a">
<a class="lien" href="mp.php?action=ecrire&pseudo=<? echo $data['pseudo'] ?>"><b><u><? echo $data['pseudo'] ?></u></b></a></span></div></td>
<td>
<img src="images/cqdreblog8_03.gif" width="8" height="37" alt=""></td>
</tr>
<tr>
<td>
<img src="images/cqdreblog8_04.gif" width="10" height="160" alt=""></td>
<td bgcolor="#7d8458" width="150" height="160"><p align="justify" class="Style1"></p>
CONTENU DE LA CELLULE JOUEUR POINT DE VIE BOUTON ATTAQUE ETC....
</td>
<td>
<img src="images/cqdreblog8_06.gif" width="8" height="160" alt=""></td>
</tr>
<tr>
<td>
<img src="images/cqdreblog8_07.gif" width="10" height="11" alt=""></td>
<td>
<img src="images/cqdreblog8_08.gif" width="150" height="11" alt=""></td>
<td>
<img src="images/cqdreblog8_09.gif" width="8" height="11" alt=""></td></tr>
</table>
</td>
<?
}
echo'</tr></table>';