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: person@gmail.com

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
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'];

}

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.