Cases à cocher pour actions dans un tableau

Cases à cocher pour actions dans un tableau - HTML/CSS - Programmation

Marsh Posté le 20-10-2006 à 10:43:06    

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  :sarcastic:  
 
Voici le code d'affichage du tableau:
 

Code :
  1. <table width="620" align="center" cellpadding="0" cellspacing="0">
  2.    <tr>
  3.       <td width="60">Photo</td>
  4.       <td width="60">Réf.</td>
  5.       <td width="70">Prix</td>
  6.       <td width="140">Localisation</td>
  7.       <td width="80">Type</td>
  8.       <td width="170">Catégorie</td>
  9.       <td width="40">Sél.</td>
  10.    </tr>
  11. <?php
  12.    while ($donnees = mysql_fetch_array($reponse) )
  13. {
  14. ?>
  15.    <tr>
  16.       <td width="60" cellpadding="0" cellspacing="0">
  17.          <?php echo $donnees['photo1']; ?>
  18.       </td>
  19.       <td width="60" cellpadding="0" cellspacing="0">
  20.          <?php echo $donnees['no_asp']; ?>
  21.       </td>
  22.       <td width="70" cellpadding="0" cellspacing="0">
  23.          <?php echo $donnees['prix']; ?> €
  24.       </td>
  25.       <td width="140" cellpadding="0" cellspacing="0">
  26.          <?php echo $donnees['ville_internet']; ?>
  27.       </td>
  28.       <td width="80" cellpadding="0" cellspacing="0">
  29.          <?php echo $donnees['type']; ?>
  30.       </td>
  31.       <td width="170" cellpadding="0" cellspacing="0">
  32.          <?php echo $donnees['categorie']; ?>
  33.       </td>
  34.       <td width="40" cellpadding="0" cellspacing="0">
  35.       <!-- c'est ici que je veux placer la case à cocher -->
  36.       </td>
  37.    </tr>
  38. <?php
  39. }
  40. mysql_close();
  41. ?>
  42. </table>


 
Merci par avance.


Message édité par Ben-o le 20-10-2006 à 10:44:14
Reply

Marsh Posté le 20-10-2006 à 10:43:06   

Reply

Marsh Posté le 20-10-2006 à 12:51:56    

Pour ma part, j'affiche un tableau et la dernière colonne sert à sélectionner ceux désirés ainsi:
 
<td align=center>
  <input type="checkbox" name="owa_choix" value="62135">
</td>

Reply

Marsh Posté le 20-10-2006 à 14:00:36    

Merci fourniey, ce qui me pose probleme, ce sont justement les valeurs que doivent prendre les "name" et "value".
Faut-il mettre le même nom pour toutes les checkbox et une valeur différente au choix?

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed