Bonjour,
j'ai un problème avec mon formulaire html toute ma page marche très bien mais le problème: quand j'envoie mon formulaire, impossible de voir mon menu déroulant "essai", ma page php marche bien puisque je reçois mon message.Il y a vraiment que ce menu qui me manque
merci d'avance pour votre aide
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46 <p align="center"<strong>Contact</strong></p> <table width="500" border="0" align="center" cellpadding="0" cellspacing="0"> <form action="envoi.php" method="post" enctype="application/x-www-form-urlencoded" name="formulaire"> <tr> <td colspan="3"><strong>Envoyer un message</strong></td> </tr> <tr> <td><div align="left">Votre nom :</div></td> <td colspan="2"><input type="text" name="nom" size="45" maxlength="100"></td> </tr> <tr> <td width="17%"><div align="left">Votre mail :</div></td> <td colspan="2"><input type="text" name="mail" size="45" maxlength="100"></td> </tr> <tr> <td><div align="left">Sujet : </div></td> <td colspan="2"><input type="text" name="objet" size="45" maxlength="120"></td> </tr> <tr> <td><div align="left">Message : </div></td> <td colspan="2"><textarea name="message" cols="50" rows="10"></textarea></td> </tr> <tr> <td></td> <td width="42%"><center> essai: <select name="essai"> <option value="0">0 <option value="1">1 <option value="2">2 <option value="3">3 <option value="4">4 <option value="5">5 <option value="6">6 <option value="7">7 <option value="8">8 <option value="9">9 </select><p> <input type="reset" name="Submit" value="Reinitialiser le formulaire"> </center></td> <td width="41%"><center> <input type="submit" name="Submit" value="Envoyer"> </center></td> </tr> </form> </table>
Partager