westminster86 Posted March 14, 2008 Share Posted March 14, 2008 Why is that the line, if ($result['password']==$password) is returning false? It finds the email address, but theres no match between the passwords. <?php session_start(); $email = $_POST['email']; $password = $_POST['password']; if (!$email || !$password) { echo '<p>You have not entered search details. <a href="login.php">Please go back and try again.</a></p>'; exit; } $dbhandle = sqlite_popen("", 0666, $err_msg); if(!$dbhandle) die("Could not open the database"); $query = sqlite_query($dbhandle, "SELECT * FROM users WHERE emailaddress='$email'"); $result = sqlite_fetch_all($query, SQLITE_ASSOC); if (sqlite_num_rows($query)==0) { // invalid email address } else { if ($result['password']==$password) { // create session variable { } } else { // invalid password } } ?> Link to comment https://forums.phpfreaks.com/topic/96197-logging-in/ Share on other sites More sharing options...
uniflare Posted March 14, 2008 Share Posted March 14, 2008 a very quick and dirty debug with if statements would probably present a slotio, echo the two variables before comparing to make sure it is what you expected, also: priint_r($result); try that between the query and the problem if statement, tell us what it says Link to comment https://forums.phpfreaks.com/topic/96197-logging-in/#findComment-492445 Share on other sites More sharing options...
craygo Posted March 14, 2008 Share Posted March 14, 2008 I assume the password is being stored unencrypted. but you may want to do a little cleanup on the posted password to make sure no spaces are in it or unwanted characters. Echo out the form password and the database password and see what you get. Ray Link to comment https://forums.phpfreaks.com/topic/96197-logging-in/#findComment-492446 Share on other sites More sharing options...
westminster86 Posted March 14, 2008 Author Share Posted March 14, 2008 Array ( [0] => Array ( [emailaddress] => [email protected] [password] => 123456 ) ) I dont get anything when echoing the line $result['password']; Link to comment https://forums.phpfreaks.com/topic/96197-logging-in/#findComment-492456 Share on other sites More sharing options...
westminster86 Posted March 14, 2008 Author Share Posted March 14, 2008 The funny thing is, if i were to use a foreach loop, foreach($result as $row) { echo $row['password']; } it prints 123456. so why does it not work below? if ($result['password']==$password) Link to comment https://forums.phpfreaks.com/topic/96197-logging-in/#findComment-492463 Share on other sites More sharing options...
craygo Posted March 14, 2008 Share Posted March 14, 2008 Try using sqlite_fetch_array $result = sqlite_fetch_array($query, SQLITE_ASSOC); Ray Link to comment https://forums.phpfreaks.com/topic/96197-logging-in/#findComment-492504 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.