Source : lesson_07_checkbox_mult.php |
Résultat |
<?php //hors de cet environnement, le form action s'écrira : //<form action="lesson=07_e2.php" method="post"> $action_file="show_solutions.php?exercise=lesson_07_checkbox_mult_2.php"; $sp = " " ; $semaine = array('lundi','mardi','mercredi', 'jeudi','vendredi','samedi','dimanche'); echo "<table width=65%><tr> <td width=15% class=no-border></td> <td class=no-border align=center><td width=70% align=center>" ; echo "<b>Quels jours préférez-vous ?"; echo "</td><td class=no-border width=15% ></td></tr></table><p>"; echo "<form action=$action_file method=post>"; echo "<table CELLSPACING=0 BORDER=1 >"; for ($count=0;$count<count($semaine);$count++) { echo "<TD >$sp<input type='checkbox' name=$semaine[$count] > $semaine[$count]$sp</td>"; } echo "</tr><tr>"; echo "<tr CLASS=Alt1><TD COLSPAN=15><DIV align=RIGHT> <br/><input type=submit NAME=Login value=VALIDER > </DIV></td></tr>"; echo "</form>"; echo "</table>"; ?>
|
|
| Quels jours préférez-vous ? | |
|