salut j'ai cree un formulaire mais lorsque j'ouvre la page pour visulaser mon formulaire il ne s'affiche pas et de plus j'ai du malo a enregistre les donnees dans la bd que j'ai crees voici une partie de mon code si je pourrais avoir une aide 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46 <form id="form1" name="form1" method="post" action="page0.php"> <p align="center"> <label><strong><br /> pseudo : </strong> <input type="text" name="textfield" /> </label> </p> <p align="center"> <label><strong>mot de passe: <input type="password" name="textfield2"/> </strong></label> </p> <p align="center"> <label><strong>confirm : </strong> <input type="password" name="textfield3"/> </label> </p> <p align=center><strong> Nom : </strong> <input type="text" name="textfield4" /> </p> <p align=center> <label><strong>Prenom :</strong> <input type="text" name="textfield5"/> </label> </p> <p align="center"> <label> <input type="submit" name="Submit" value="Enregistrer" /> </label> </p> <p align="center"> </p> <?php if(( isset ($_POST['pseudo']) and isset ($_POST['mot_de_passe'])) and (isset ($_POST['confirm']) and isset ($_POST['nom'])and isset ($_POST['prenom'])) // si les variables existent { if (($_POST['pseudo'] != Null and $_POST['mot_de_passe'] != Null and $_POST['confirm']!= Null) and ($_POST['nom']!= Null and $_POST['prenom']!= Null)) // si on quelque chose a enregistrer { mysql_connect("localhost","root",""); // connexion a la bd mysql_select_db("inscription"); // selection dela bd mysql_query("insert into Enregistrement values(",'pseudo','mot_de_passe','confirm','nom','prenom' ")"); mysql_close(); } } ?> </form>
Partager