Jump to content

Logging in


westminster86

Recommended Posts

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

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.