Jump to content

Login and Register SCRIPT - using MySQL and PHP


R007S

Recommended Posts

Hey,

 

I just created a register&login system (with a lill help of a tutorial made in 2004), but i'm having some issues when trying to Login.

 

The register script works perfectly, it creates successfully a new account into the database, but when I try to Login it says that the password is wrong, instead of saying that the password is correct.

 

I tried to figure out what the problem is.. but i can't get track of this.

 

I think the problem is here:

 

       # Retrieve password from result, strip slashes
  		$dbarray = mysql_fetch_array($result);
  		$dbarray['password'] = stripslashes($dbarray['password']);
  		$password = stripslashes($password);
  		
  		# Validate that password is correct
  		if ($password == $dbarray['password'])
  		{
  				return 0; // Sucess! usrname and pw confirmed
  		}
  		else
  		{
  				return 2; // Indicates password failure
  		}

 

Well, i attached the entire script so you could figure out.

Thanks!

 

[attachment deleted by admin]

Link to comment
Share on other sites

Try this and see what you get.  are the passwords encrypted?

 

# Retrieve password from result, strip slashes
$dbarray = mysql_fetch_array($result);
$dbarray['password'] = stripslashes($dbarray['password']);
$password = stripslashes($password);

echo "password is" . $password . "<br />;
echo "dbpassword is" . $dbarray['password'];

# Validate that password is correct
        if ($password == $dbarray['password'])
        {
              return 0; // Sucess! usrname and pw confirmed
        }
        else
        {
              return 2; // Indicates password failure
        }

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.