L'erreur dans le code php

Résolu/Fermé
smailtun Messages postés 9 Date d'inscription lundi 25 février 2013 Statut Membre Dernière intervention 16 mai 2013 - Modifié par smailtun le 25/02/2013 à 18:18
smailtun Messages postés 9 Date d'inscription lundi 25 février 2013 Statut Membre Dernière intervention 16 mai 2013 - 25 févr. 2013 à 18:33
Bonjour,

svp,qui peut m'aider à trouver l'erreur ?
vraiment j'ai tout revu ,mais pas de chance :(


( ! ) Parse error: syntax error, unexpected $end in C:\wamp\www\inscrip.php on line 45


<?php
$con=mysql_connect("localhost","root","");
if(!$con)
{die(' impossible de connecter: '.mysql_error());
}
mysql_select_db("test",$con);
$pseudo=$_POST['login'];
$nom=$_POST['nom'];
$prenom=$_POST['prenom'];
$sexe=$_POST['sexe'];
$email=$_POST['email'];
$cin=$_POST['cin'];
$pswd=$_POST['pass'];
$pswd2=$_POST['pass2'];
$tel=$_POST['telephone'];
if($cin==null){ echo("<h1 color='#00001f'>cin manquant </h1>");include("Inscription.html");die('');}
if($nom==null){ echo("<h1 color='#00001f'>nom monquant </h1>");include("Inscription.html");die('');}
if($prenom==null){ echo("<h1 color='#00001f'>prenom manquant </h1>");include("Inscription.html");die('');}
if($sexe==null){ echo("<h1 color='#00001f'> sex manquant</h1>");include("Inscription.html");die('');}
if($email==null){ echo("<h1 color='#00001f'>mail manquant </h1>");include("Inscription.html");die('');}
if($pseudo==null){ echo("<h1 color='#00001f'>nom d utilisateur manquant </h1>");include("Inscription.html");die('');
if($pswd==null){ echo("<h1 color='#00001f'> mot se passe manquant</h1>");include("Inscription.html");die('');}
if($pswd2==null){ echo("<h1 color='#00001f'>confirmer votre mot de passe </h1>");include("Inscription.html");die('');}
$sql1=" select count(*) from personne where login='".$pseudo."';";
$re=mysql_query($sql1);
$tes=mysql_result($re,0);
if($tes> 0)
{echo("<h1 color='#00001f'> nom d utilisateur utilisé</h1>");
include("Inscription.html");
die('');
}
if ($pswd!=$pswd2)
{echo("<h1 color='#00001f'> comfirmer correctement le mot de passe</h1>");
include("Inscription.html");
die('');
}
$sql="insert into personne values('".$cin."','".$nom."','".$prenom."','".$tel."','".$email."','".$sexe."','".$pseudo."','".$pswd."');";
if (!mysql_query($sql,$con))
{
die('Error: ' . mysql_error());
}
echo ("<h1>inscription réussite </h1>");
include( "connexion.html" );
mysql_close();
?>
A voir également:

2 réponses

PHPascal Messages postés 6 Date d'inscription lundi 25 février 2013 Statut Membre Dernière intervention 9 décembre 2013 5
25 févr. 2013 à 18:22
Il manque une parenthèse fermante après
if($pseudo==null){ echo("<h1 color='#00001f'>nom d utilisateur manquant </h1>");include("Inscription.html");die('');  
 
1
smailtun Messages postés 9 Date d'inscription lundi 25 février 2013 Statut Membre Dernière intervention 16 mai 2013
25 févr. 2013 à 18:33
merci ,& finalement ca marche :)))
0