Bonjour, j'affiche dans un tableau les biens immobiliers stoqués dans une BDD MySql (photo, prix, réf...)
Je voudrais rajouter une case à cocher sur chaque ligne afin de pouvoir effectuer des actions sur les biens comme supprimer, modifier ou encore sélectionner en produit du mois.
Je ne sais pas si il me faut faire une balise <form> encadrant le tableau et qui contiendrait donc toutes les cases à cocher ou si ce n'est pas la peine. Et ensuite savoir comment valider mes actions sur les boutons "supprimer", "modifier" et "produit du mois".
J'espère avoir été assez clair
Voici le code d'affichage du tableau:
Code :
- <table width="620" align="center" cellpadding="0" cellspacing="0">
- <tr>
- <td width="60">Photo</td>
- <td width="60">Réf.</td>
- <td width="70">Prix</td>
- <td width="140">Localisation</td>
- <td width="80">Type</td>
- <td width="170">Catégorie</td>
- <td width="40">Sél.</td>
- </tr>
- <?php
- while ($donnees = mysql_fetch_array($reponse) )
- {
- ?>
- <tr>
- <td width="60" cellpadding="0" cellspacing="0">
- <?php echo $donnees['photo1']; ?>
- </td>
- <td width="60" cellpadding="0" cellspacing="0">
- <?php echo $donnees['no_asp']; ?>
- </td>
- <td width="70" cellpadding="0" cellspacing="0">
- <?php echo $donnees['prix']; ?>
- </td>
- <td width="140" cellpadding="0" cellspacing="0">
- <?php echo $donnees['ville_internet']; ?>
- </td>
- <td width="80" cellpadding="0" cellspacing="0">
- <?php echo $donnees['type']; ?>
- </td>
- <td width="170" cellpadding="0" cellspacing="0">
- <?php echo $donnees['categorie']; ?>
- </td>
- <td width="40" cellpadding="0" cellspacing="0">
- <!-- c'est ici que je veux placer la case à cocher -->
- </td>
- </tr>
- <?php
- }
- mysql_close();
- ?>
- </table>
|
Merci par avance.
Message édité par Ben-o le 20-10-2006 à 10:44:14