Code de [CONNEXION ESPACE MEMBRE]
Posté : 26 déc. 2007, 00:13
Bonjour et joyeux noël à vous.
Quelqu'un peut t-il me dire comment on crée un script permétant de connecté un membre à l'espace membre ?
Bon j'ai fait de mon mieu mais ya quelque incertitudes :
[Note : ce message a été posté de manière anonyme avant d'être réattribué à son auteur]
Quelqu'un peut t-il me dire comment on crée un script permétant de connecté un membre à l'espace membre ?
Bon j'ai fait de mon mieu mais ya quelque incertitudes :
<?php
//-->> DEMMARRAGE D'UNE SESSION
session_start();
//-->> INCLUDE
include('ip.php');
include('../include/mysql.php');
//-->> RECEPTION DES CHAMPS
$mot_de_passe_champs = $_POST['mot_de_passe'];
$identifiant_champs = $_POST['identifiant'];
//-->> SELECTION DU CHAMPS MOT DE PASSE DE TOUT LES IDENTIFIANT
$mot_de_passe_req = mysql_query("SELECT mot_de_passe,identifiant FROM inscription") or die (''.mysql_error());
while($mot_de_passe_data = mysql_fetch_assoc($mot_de_passe_req))
{
$mot_de_passe_base = $mot_de_passe_data['mot_de_passe'];
$identifiant_base = $identifiant_data['identifiant'];
}
//-->> CONSEQUENCE
if($mot_de_passe_base == $mot_de_passe_champs AND $identifiant_base == $identifiant_champs)
{
//-->> Redirection ver scompte
}
else
{
//-->> Erreur
}
?>
Merci beaucoup.[Note : ce message a été posté de manière anonyme avant d'être réattribué à son auteur]