Jump to content

SELECT password from users where username = "$username"?


johnseito

Recommended Posts

Hello everyone,

 

I created a register.php page, and haver user enter the username and password.  Once they enter it, I then create a login.php page.

 

So now user that logins in can enter username and password.  so if they enter a username and supposely this username is in the database, how can i query out the username's associated password?

 

is it this code?

 

  $result = mysql_query("select password from users where username ='$username'");

$info = mysql_fetch_array( $result);


Echo " $info[password]<br>"; 

 

thanks

Link to comment
Share on other sites

Well...they just entered the password with the from. So what you need to do is check if that username AND password exist for a single row, not just the username.

 

<?php

$result = mysql_query("select password from users where username ='$username' AND password='$password'");

if (mysql_num_rows($result) > 0){
   echo "Correct login info!";
} else {
   //wrong info
}

?>

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.