Jump to content

Get info from specific user


jumby

Recommended Posts

Hi Guys, I am fairly new to mySQL/PHP and I have an issue. I have a login/registration system for a website and it works. However in the registration the user enters info such as their phone and email. How can I access these two fields of info from the user who is currently logged in. For example someone makes an account with:

Username: Person

Password: hello

Email: [email protected]

Phone: 111-111-1111

Name: Hello Person

 

When they log into the site using their username and password, how can I detect their email/phone/name? Thanks in advance!

Link to comment
https://forums.phpfreaks.com/topic/215733-get-info-from-specific-user/
Share on other sites

Query your database accordingly;

 

e.g

 

$query = "SELECT phone,email FROM users WHERE username = '$username' AND userpass = '$userpass' ";

 

$res = mysql_query($query) or die(mysql_error());

 

if(mysql_num_rows($res) > 0){

$data = mysql_fetch_array($res, MYSQL_ASSOC);

 

$phone = $data['phone'];

$email = $data['email'];

}

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.