Fixed detection of wrong user name
parent
ab3691ade6
commit
4779d901c2
|
@ -7,7 +7,7 @@ $password = $_POST['password'];
|
||||||
$pdo = new PDO('mysql:host=localhost;dbname=web', 'webstuff', 'Schei// auf Pa$$w0rter!');
|
$pdo = new PDO('mysql:host=localhost;dbname=web', 'webstuff', 'Schei// auf Pa$$w0rter!');
|
||||||
$statement = $pdo->prepare('SELECT id, authentication_algorithm, authentication_salt, authentication_string FROM users WHERE name = :username;');
|
$statement = $pdo->prepare('SELECT id, authentication_algorithm, authentication_salt, authentication_string FROM users WHERE name = :username;');
|
||||||
$result = $statement->execute(array('username' => $username));
|
$result = $statement->execute(array('username' => $username));
|
||||||
if ($result) {
|
if ($statement->rowCount() > 0) {
|
||||||
//existing user name
|
//existing user name
|
||||||
$dbentry = $statement->fetch();
|
$dbentry = $statement->fetch();
|
||||||
//chechk for correct password
|
//chechk for correct password
|
||||||
|
|
Loading…
Reference in New Issue