Hey Guys,
I want to know how can you connect to multiple tables at a time.
I need one table to validate the username and pasword.
I need another table to show his details.
Please Give Some suggestions(I am using php and MySQL)
anuj_sharma -3 Junior Poster
Recommended Answers
Jump to Postyes , you can write joins to get your desired details...
select l.user_name,l.password,u.fname,u.lname,u.address from login_table as l,user_table as u where l.user_id=u.user_id;
All 2 Replies
Reply to this topic Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.