Bonjour,
Voila mon code :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30 <form action="livredor_1.php" method="post" name="supprimer" target="_parent"> <table border="1" cellpadding="1" cellspacing="1"> <tr> <td>code</td> <td>date</td> <td>nom</td> <td>commentaire</td> </tr> <?php $n = 1 ; do { ?> <tr> <td><input name="code<? echo $n; ?>" type="checkbox" value="<?php echo $row_livredor['code']; ?>"></td> <td><?php echo $row_livredor['date']; ?></td> <td><?php echo $row_livredor['nom']; ?></td> <td><?php echo $row_livredor['commentaire']; ?></td> </tr> <?php $n = $n +1; } while ($row_livredor = mysql_fetch_assoc($livredor)); ?> </table> <input name="Supprimer" type="submit" value="suppr">
Mon probleme est que je ne vois pas comment recuperer les valeur de mon <input name="code<? echo $n; ?>" type="checkbox" value="<?php echo $row_livredor['code']; ?>"> sur la page suivante.
Quelqu'un aurait-il une idée ?
Partager