Salut vla comment je ferais :
<table width="556" border="0">
<tr>
<td>
<?
$reponse = mysql_query('SELECT * FROM `ibf_topics` ORDER BY start_date DESC LIMIT 0 , 5 ');
$nbreReponse = db_num_rows($reponse);
while ($donnees = mysql_fetch_array ($reponse)){
?>
<a href="http://informaticman.free.fr/forum/index.php?showtopic=<?=$donnees['tid']?>" target="_blank"><font color=red><?=$donnees ['title'] ?></font></a>
}
?>
</td>
<td valing=top><?=$nbreReponse?></td>
</tr>
</table>
Sinon pour que les reponses sois en face de chaque sujet tu fias un truc dans ce style :
<table width="556" border="0">
<?
$reponse = mysql_query('SELECT * FROM `ibf_topics` ORDER BY start_date DESC LIMIT 0 , 5 ');
$nbreReponse = db_num_rows($reponse);
while ($donnees = mysql_fetch_array ($reponse)){
?>
<tr>
<td><?=$tarequetepourafficherlaquestion?></td>
<td><?=$tarequtepourafficherla reponse</td>
</tr>
<?
}
?>
</table>
J'ai pas tester mais jpense que ca devrait marcher