A voir également:
- Probleme espace membre PHP
- Espace insécable word - Guide
- Comment liberer de l'espace sur gmail - Guide
- Membre indisponible vinted - Guide
- Easy php - Télécharger - Divers Web & Internet
- Espace stockage google - Guide
4 réponses
Ce code et de toi il me semble un peut bizard surtout pour faire une verif des id et mdp dans une base.
Bon je t fait un petit script donc fait les modifs que tu as besoin pour qu'il fonction
<?php require ("include/connexion.php"); //ici on require la page avec les infos de connexion
session_start();
if (isset($_POST['login'])){
$login = $_POST['login'];
$pass = md5($_POST['pass']); //le mdp avec un algorythme (on ne sais jamais)
mysql_select_db($database_db, $db);
$verif_query=sprintf("SELECT * FROM utilisateurs WHERE login='$login' AND pass='$pass'");
$verif = mysql_query($verif_query, $db) or die(mysql_error());
$row_verif = mysql_fetch_assoc($verif);
$utilisateur = mysql_num_rows($verif);
if ($utilisateur) {
session_register("authentification");
$_SESSION['login'] = $row_verif['login'];
$_SESSION['pass'] = $row_verif['pass'];
header("Location:index.php?page=11"); //c ok on redirige vers la page accueil
}
else {
header("Location:index.php?page=7");//c pas bon on redirige vers la page ko
}
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
<link href="css/styles.css" rel="stylesheet" type="text/css" />
<body>
<form action="traitement1.php" method="post" name="connect">
<div align="center">
<table width="300" border="1" cellpadding="0" cellspacing="0" bordercolor="#CCCCCC">
<tr>
<td><table width="400" border="0" cellpadding="10" cellspacing="0" bgcolor="#eeeeee">
<tr>
<td width="50%"><span class="Style7">LOGIN</span></td>
<td width="50%"><input name="login" type="text" id="login"></td>
</tr>
<tr>
<td width="50%"><span class="Style7">MOT DE PASSE </span></td>
<td width="50%"><input name="pass" type="password" id="pass"></td>
</tr>
<tr>
<td height="34" colspan="2"><div align="center">
<input type="submit" name="Submit" value="Se connecter">
</div></td>
</tr>
</table></td>
</tr>
</table>
</div>
</form>
</body>
</html>
<?php require ("include/connexion.php"); //ici on require la page avec les infos de connexion
session_start();
if (isset($_POST['login'])){
$login = $_POST['login'];
$pass = md5($_POST['pass']); //le mdp avec un algorythme (on ne sais jamais)
mysql_select_db($database_db, $db);
$verif_query=sprintf("SELECT * FROM utilisateurs WHERE login='$login' AND pass='$pass'");
$verif = mysql_query($verif_query, $db) or die(mysql_error());
$row_verif = mysql_fetch_assoc($verif);
$utilisateur = mysql_num_rows($verif);
if ($utilisateur) {
session_register("authentification");
$_SESSION['login'] = $row_verif['login'];
$_SESSION['pass'] = $row_verif['pass'];
header("Location:index.php?page=11"); //c ok on redirige vers la page accueil
}
else {
header("Location:index.php?page=7");//c pas bon on redirige vers la page ko
}
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
<link href="css/styles.css" rel="stylesheet" type="text/css" />
<body>
<form action="traitement1.php" method="post" name="connect">
<div align="center">
<table width="300" border="1" cellpadding="0" cellspacing="0" bordercolor="#CCCCCC">
<tr>
<td><table width="400" border="0" cellpadding="10" cellspacing="0" bgcolor="#eeeeee">
<tr>
<td width="50%"><span class="Style7">LOGIN</span></td>
<td width="50%"><input name="login" type="text" id="login"></td>
</tr>
<tr>
<td width="50%"><span class="Style7">MOT DE PASSE </span></td>
<td width="50%"><input name="pass" type="password" id="pass"></td>
</tr>
<tr>
<td height="34" colspan="2"><div align="center">
<input type="submit" name="Submit" value="Se connecter">
</div></td>
</tr>
</table></td>
</tr>
</table>
</div>
</form>
</body>
</html>
Merci pour la réponse mais je ne comprend pas tellement ton code, désolé je suis une novice dans ce domaine
Notamment cette ligne :"form action="traitement1.php"
Qu'est ce que traitement 1??
A cette ligne "mysql_select_db($database_db, $db)" que represent $db??
Je suis désolé de vous ennuyer avec ca....
Merci d'avance :)
Notamment cette ligne :"form action="traitement1.php"
Qu'est ce que traitement 1??
A cette ligne "mysql_select_db($database_db, $db)" que represent $db??
Je suis désolé de vous ennuyer avec ca....
Merci d'avance :)