jumby Posted October 12, 2010 Share Posted October 12, 2010 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 More sharing options...
Oziam Posted October 12, 2010 Share Posted October 12, 2010 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 https://forums.phpfreaks.com/topic/215733-get-info-from-specific-user/#findComment-1121617 Share on other sites More sharing options...
jumby Posted October 13, 2010 Author Share Posted October 13, 2010 Thank you so much! It worked perfectly! Link to comment https://forums.phpfreaks.com/topic/215733-get-info-from-specific-user/#findComment-1121841 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.