salut,

voila lorsqu'un article de ma base de donnees daffiche sur mon tableau il a facheuse tendance a etendre la largeur du tableau ! qqn pourait me dire comment eviter ca ? je veux un retour a la ligne automatique comment faire ?

voici le code de mon tableau

Code html : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
<table width="500" height="130" border="1" bordercolor="#CCCC00">
        <tr>
          <td width="193" height="24"><?php echo $row_produit['reference']; ?></td>
          <td width="193"><?php echo $row_produit['libel']; ?></td>
          <td width="100"><?php echo $row_produit['prix_ttc']; ?>euros</td>
        </tr>
        <tr>
          <td colspan="2"><p><?php echo $row_produit['description']; ?></p></td>
          <td><a href="panier.php?reference=<?php echo $row_produit['reference']; ?>&amp;prix_ttc=<?php echo $row_produit['prix_ttc']; ?>&amp;ajoutPanier=AJOUTER">ajouter cet article au panier</a> </td>
        </tr>
    </table>