bonjours j'ai une liste deroule, mais je reçois par mail le numero de la reponse et non pas la repose en texte, un petit coup de main merci
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 # au début du script, déclaration du tableau # option menu déroulant 'Choix' # ajout d'option : 'n'=>'Choix 1', 'n+1'=>'Choix 2', # la première ligne (optionnelle) impose un choix $Choix = array( 0 => 'Choisissez', 1 => 'homme', 2 => 'femme', 3 => 'Couple', 4 => 'Club ou sauna', ); ........... <? if ($Choix) { ?> <label for="Choix">Choix</label><select name='Choix' <? if($focus == 10) echo "class=\"focus\"";?> id="Choix"> <? foreach($Choix as $key => $val) { echo " <option value='$key'"; // vérifier si une des entrées a été choisie if($key == $_POST['Choix']) echo " selected"; echo ">$val\n"; } ?> </select> <? } else { ?> <label for="Choix">Choix</label><input id="Choix" <? if($focus == 10) echo "class=\"focus\"";?> name="Choix" maxlength="60" value="<? echo htmlentities($_POST['Choix'], ENT_QUOTES)?>"> <? } ?>
Partager