Abfrage hilfe

maarian

Erfahrenes Mitglied
Also bei meinem Login System fragt er das passwort und den Usernamen ab möchte aber zusätzlich noch abfrage ob in der spalte gesperrt ja oder nein steht wenn da ja steht soll der login versuch abgebrochen werden und eine fehlermeldung kommen hier der code habe schon mal probiert aber nciht

PHP:
<?php
	session_start();
	include "mysql.php";
	$_POST['username'] = addslashes($_POST['username']); // make sure people can't hack the db by entering '" MySQL QUERY HERE as the username
	$_POST['password'] = addslashes($_POST['password']); // same ^^
	$password = md5($_POST['password']); // encrypt the password
	$userrow = mysql_query("SELECT * FROM `userdb` WHERE `username` = '" . $_POST['username'] . "' AND `password` = '" . $password . "', `gesperrt` = 'nein';",$mysql);
	if(mysql_num_rows($userrow) != "1"){
		// no rows found, wrong password or username
		echo "<font color='red'><b>Falscher Benutzername oder das Passwort ist Falsch!<br></b></font>";
	include "login.php";
	
   } else {
		// 1 row found exactly, we have the user!
		$_SESSION['user'] = $_POST['username'];
		header("Location: nickpage.php");
	}
?>
 
Hallo!

PHP:
    $userrow = mysql_query("SELECT * FROM `userdb` WHERE `username` = '" . $_POST['username'] . "' AND `password` = '" . $password . "' AND `gesperrt` = 'nein';",$mysql);
Und markiere das Thema bitte erst dann als erledigt, wenn es auch erledigt ist. ;)

Gruss Dr Dau
 
Zurück