devdeb22
Messages postés28Date d'inscriptionmercredi 18 avril 2018StatutMembreDernière intervention 9 février 2020
-
19 avril 2018 à 00:10
devdeb22
Messages postés28Date d'inscriptionmercredi 18 avril 2018StatutMembreDernière intervention 9 février 2020
-
19 avril 2018 à 15:54
Bonjour,
Je suis novice en programmation et je souhaite rejoindre le monde merveilleux de la programmation qui est le votre.
Voilà le défis que je rencontre.
Je suis en train de créer un site en local pour apprendre à coder.
Sauf que ça fait 3 jours que j'ai rencontre un problème avec un fichier php et que je n'arrive pas à en venir à bout.
Lorsque je charge la page "web" du fichier php en question voilà ce qu'il m'envoie comme message.
( ! ) Notice: Undefined index: MotDePasse_1 in C:\wamp\www\Offre\HTML\InscriptionOffre.php on line 94
Call Stack
# Time Memory Function Location
1 0.0011 145432 {main}( ) ...\InscriptionOffre.php:0
( ! ) Notice: Undefined index: Formation in C:\wamp\www\Offre\HTML\InscriptionOffre.php on line 96
Call Stack
# Time Memory Function Location
1 0.0011 145432 {main}( ) ...\InscriptionOffre.php:0
( ! ) Notice: Undefined index: Prenom in C:\wamp\www\Offre\HTML\InscriptionOffre.php on line 96
Call Stack
# Time Memory Function Location
1 0.0011 145432 {main}( ) ...\InscriptionOffre.php:0
( ! ) Notice: Undefined index: Nom in C:\wamp\www\Offre\HTML\InscriptionOffre.php on line 96
Call Stack
# Time Memory Function Location
1 0.0011 145432 {main}( ) ...\InscriptionOffre.php:0
( ! ) Notice: Undefined index: Pseudo in C:\wamp\www\Offre\HTML\InscriptionOffre.php on line 96
Call Stack
# Time Memory Function Location
1 0.0011 145432 {main}( ) ...\InscriptionOffre.php:0
( ! ) Notice: Undefined index: Sexe in C:\wamp\www\Offre\HTML\InscriptionOffre.php on line 96
Call Stack
# Time Memory Function Location
1 0.0011 145432 {main}( ) ...\InscriptionOffre.php:0
( ! ) Notice: Undefined index: DateDeNaissance in C:\wamp\www\Offre\HTML\InscriptionOffre.php on line 96
Call Stack
# Time Memory Function Location
1 0.0011 145432 {main}( ) ...\InscriptionOffre.php:0
( ! ) Notice: Undefined index: AdresseMail_1 in C:\wamp\www\Offre\HTML\InscriptionOffre.php on line 96
Call Stack
# Time Memory Function Location
1 0.0011 145432 {main}( ) ...\InscriptionOffre.php:0
( ! ) Notice: Undefined variable: MotDePasse_1 in C:\wamp\www\Offre\HTML\InscriptionOffre.php on line 96
Call Stack
# Time Memory Function Location
1 0.0011 145432 {main}( ) ...\InscriptionOffre.php:0
( ! ) Notice: Undefined index: Promo in C:\wamp\www\Offre\HTML\InscriptionOffre.php on line 96
Call Stack
# Time Memory Function Location
1 0.0011 145432 {main}( ) ...\InscriptionOffre.php:0
( ! ) Warning: PDOStatement::execute() expects at most 1 parameter, 9 given in C:\wamp\www\Offre\HTML\InscriptionOffre.php on line 96
Call Stack
# Time Memory Function Location
1 0.0011 145432 {main}( ) ...\InscriptionOffre.php:0
2 0.1356 154904 execute ( ) ...\InscriptionOffre.php:96
Votre compte à était créé avec succès !
Et voici le code :
<?php
if(!empty($_POST)){
$errors=array();
if(empty($_POST['Prenom'])){
$errors['Prenom']="Vous n'avez pas saisi votre prénom";
}
if(empty($_POST['Nom'])){
$errors['Nom']="Vous n'avez pas saisi votre nom";
}
if(empty($_POST['Pseudo']) or !preg_match('/^[a-zA-Z0-9_]+$/', $_POST['Pseudo'])){
$errors['Pseudo']="Vous n'avez pas saisi votre pseudo";
}
if(empty($_POST['DateDeNaissance'])){
$errors['DateDeNaissance']="Vous n'avez pas saisi votre date de naissance";
}
if(empty($_POST['AdresseMail_1'])){
$errors['AdresseMail_1']="Vous n'avez pas saisi votre adresse mail";
}
if(empty($_POST['AdresseMail_2']) or !filter_var($_POST['AdresseMail_2'],FILTER_VALIDATE_EMAIL)){
$errors['AdresseMail_2']="Vous n'avez pas confirmer votre adresse mail";
}
if(empty($_POST['MotDePasse_1']) or $_POST['MotDePasse_1'] != $_POST['MotDePasse_2'])
{
$errors['MotDePasse_1']="Vous n'avez pas saisi votre mot de passe";
jordane45
Messages postés38268Date d'inscriptionmercredi 22 octobre 2003StatutModérateurDernière intervention 2 novembre 20244 694 19 avril 2018 à 00:28
jordane45
Messages postés38268Date d'inscriptionmercredi 22 octobre 2003StatutModérateurDernière intervention 2 novembre 20244 694 19 avril 2018 à 00:31
Et pour corriger ton souci... Ta variable c'est $password et non $MotDePass_1
19 avril 2018 à 00:31