Leçon N° 07 : Formulaires
Boutons radioSolutionSolution & source**
• Rajouter le samedi et le dimanche dans la liste des jours possibles
• Comment faire pour ne pas avoir d'erreur si aucune case n'est cochée ?
Notes de page
Source: lesson_07_radio.phpRésultat
<?php
$sp 
"&nbsp;&nbsp;&nbsp;&nbsp;" ;
echo 
"<table width=65%><tr><td width=70% align=left>" ;
echo 
"<b>Quel jour préférez-vous ?";
echo 
"    </td><td class=no-border width=15% ></td></tr></table><p>" ;
   
//hors de cet environnement, la ligne suivante s'écrira :
   //form action="lesson=07_radio_2.php" method="get"> 
echo "<form action=show_exercises.php?exercise=lesson_07_radio_2.php 
    method=post>"
;
echo 
"<table CELLSPACING=2 BORDER=1 bordercolor=red cellpadding=2 
    class=std_2 >"
;
echo 
"<tr><td><input type='radio' name=choice value='lundi'></td>
        <td>Lundi</td></tr>"
;
echo 
"<tr><td><input type='radio' name=choice value='mardi'></td>
        <td>Mardi</td></tr>"
;
echo 
"<tr><td><input type='radio' name=choice value='mercredi'></td> 
    <td>Mercredi</td></tr>"
;
echo 
"<tr><td><input type='radio' name=choice value='jeudi'></td>
    <td>Jeudi</td></tr>"
;
echo 
"<tr><td><input type='radio' name=choice value='vendredi'> 
    </td><td>Vendredi</td></tr><tr>"
;
echo 
"<tr CLASS=Alt1><TD COLSPAN=15><DIV align=RIGHT><br/>";
echo 
"<input type=submit NAME=Login value=valider ></div></td></tr>";
echo 
"</form>";
echo 
"</table>";
?>

Quel jour préférez-vous ?

Lundi
Mardi
Mercredi
Jeudi
Vendredi


Tous droits réservés. 2005-2020