Fixed bugs in PHP database code

This commit is contained in:
2023-06-25 15:21:43 -05:00
parent e37bf086dd
commit 1392c62d31
2 changed files with 11 additions and 8 deletions

View File

@@ -1,10 +1,12 @@
<?php
require_once 'db.inc.php';
$email = $_GET['email'];
$password = $_GET['password'];
$session = init_cass_db();
$statement = $session->prepare('SELECT password FROM users WHERE email=? ALLOW FILTERING;');
$statement = $session->prepare('SELECT password_hash FROM users WHERE email=? ALLOW FILTERING;');
$result = $session->execute($statement,array('arguments' => array($email)));
@@ -12,7 +14,7 @@ if ($result->count() <= 0) {
echo('Invalid email address or password.');
exit();
} else {
$hash = $row[0]['password'];
$hash = $result[0]['password_hash'];
if (password_verify($password,$hash) != true) {
echo('Invalid email address or password.');
@@ -20,7 +22,7 @@ if ($result->count() <= 0) {
} else {
session_start();
$_SESSION['user'] = $email;
echo('Logged in successfully. You are ' . $_SESSION['user']);
header('Location: https://glink.zip?res=success');
}
}