Violat mon code
Il marche mais quand je clic sur envoyer il ne sa passe rien
Mais je sais pas pour quoi j'ai aussi une php envoie qui doit envoyer les donnez dans un dossier mais rien sa passe

Merci d'avance


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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
 
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <title>inscription cours SSS</title>
  <meta http-equiv="Content-Type"
 content="text/html; charset=iso-8859-1">
  <script language="JavaScript">
//La fonction JavaScript qui vérifie si les champs obligatoirs du formulaire ont été bien remplis
<!--
function envoie(formulaire) {
if ( (document.getElementById('Pseudo').value.length>0)
&&(document.getElementById('mot de passe').value.length>0)
&&(document.getElementById('mail').value.length>0)
){
formulaire.submit();
} else
alert('IMPOSSIBLE D\' ENVOER LE FORMULAIRE, VOUS AVEZ OUBLIEZ DE REMPLIRE DES CHAMPS OBLIGATOIRS');
}
-->
  </script>
  <style type="text/css">
<!--
.Style4 { font-size: 16px;
font-weight: bold;
}
.Style10 {font-size: 18px; font-weight: bold; }
.Style11 {
font-size: 36px;
font-weight: bold;
}
-->
  </style>
</head>
<body style="background-color: rgb(255, 255, 255);">
<div align="center">
<p class="Style11" align="left">Formulaire
d'inscription </p>
<p class="Style10" align="left"><font
 color="#ff0000">Les cases marqu&eacute;es d'une * sont
obligatoires </font> </p>
<form action="envoi.php" method="get"
 name="form_contacts" id="form_contacts">
  <p class="Style4" align="left">*Homme
  <input name="sex" value="Monsieur" id="sex"
 type="radio">Femme
  <input name="sex" value="madame" id="sex"
 type="radio"></p>
  <p class="Style4" align="left">*Pseudo :
  <input name="Pseudo" id="Pseudo" type="text"></p>
  <p class="Style4" align="left">*Mot de passe :
  <input name="Motdepasse" id="Motdepasse" type="text"></p>
  <p align="left"><span class="Style4">*adresse email :
  <input name="email" id="email" size="50"
 type="text"></span></p>
  <p align="left"> <input name="envoyer"
 id="envoyer" value="Envoyer" onclick="envoie(this.form)"
 type="button">
  <input name="retablir" id="retablir" value="R&eacute;tablir"
 type="reset"> </p>
</form>
<p>envoie.php</p>
</div>
</body>
</html>