I'm fairly new to php and mysql. The situation is I have two areas- one an admin area and one a member area.
One database handles the login: first name, last name, password, group, etc.
The second database has different details, but must match up with a contact manager, so I cannot change it.
Once you've logged in, I wanted details available to the member, by pulling them from the second database without making any changes. My thought was to use one of the fields from the second in the first as a cross reference. How do I make sure that the right contact id is used to pull up the current user's details?
The admin section enables admins to add users, send email, delete, unban, etc. They will also be able to change details in the second database.
Does this make sense?
Thanks for the help.