bjr, je suis nouveau, je connait pas vraiment comment ca marche......voilà, j' ai besoin d'aide sur mon nouveau site, la gestion de scolarité, qui fait tjr d'erreur lorssque j'ajoute un nouveau élève, voici le message

Undefined index: pass in C: wamp\www\gestion de scolarite\Ajout_etudiant.php on line 13

voici mon code, enfin une partie
<?php
mysql_connect("localhost", "root", "");
mysql_select_db("gestion");
if(isset($_POST['nom'])){
if($_POST['nom']!="" and $_POST['prenom']!="" and $_POST['date']!="" and $_POST['adresse']!="" and $_POST['phone']!="" and $_POST['pseudo']!="" and $_POST['passe']!=""){
$nom=addslashes(Htmlspecialchars($_POST['nom']));
$prenom=addslashes(Htmlspecialchars($_POST['prenom']));
$date=addslashes(Htmlspecialchars($_POST['date']));
$phone=addslashes(Htmlspecialchars($_POST['phone']));
$adresse=addslashes(Nl2br(Htmlspecialchars($_POST['adresse'])));
$nomcl=$_POST['nomcl'];
$promo=$_POST['promotion'];
$pseudo=$_POST['pseudo'];
$passe=$_POST['mdp'];
$nb=mysql_fetch_array(mysql_query("select count(*) as nb from eleve where nomel='$nom' and prenomel='$prenom'"));
if($nb['nb']!=0){
?><SCRIPT LANGUAGE="Javascript">alert("erreur! cet enregistrement existe déja!");</SCRIPT><?php
}

merci de votre aide
Salut

L'erreur est parlante pourtant,
Undefined index: pass in C: wamp\www\gestion de scolarite\Ajout_etudiant.php on line 13

Undefined index signifie qu'il cherche "quelque chose" dans un tableau et qu'il ne la pas trouver. L'index étant la "clé" d'une valeur.
La clé qui à foiré c'est : "pass" il le dit juste après
Où ? à la ligne 13 (en plus il donne la ligne) dans ton fichier Ajout_etudiant

Donc je sais pas si tu as bien partagé l'erreur mais je ne vois pas de "pass" dans ton code.