j'ai oublié de montrer le code......
table border="0" cellpadding="3" cellspacing="3">
<tr>
<th>Réf. CRX</th>
<th>Nom </th>
<th>Prénom</th>
<th>Solde</th>
<th>Numéro</th>
</tr>
<?php
include("connexion.php");
$table2 = "débiteur";
$crx = $_POST['larefcrx'];
$req2 = "SELECT dossier_crx, nom_debiteur, prenom_débiteur, solde, tel_portable FROM $table2 where
dossier_crx='$crx'";
$re2 = mysql_query($req2);
while ($row = mysql_fetch_array($re2)&& ($re2>1)){
echo "<tr>\n
<td>$row[0]</td>\n
<td>$row[1]</td>\n
<td>$row[2]</td>\n
<td>$row[3]</td>\n
<td>$row[4]</td>\n
</tr>\n";
}
mysql_close();
?>
</tr>
</table>