Hi everyone,
I have two tables one for 'users' information and one for their 'profiles'.
After a user fills his registration and profile information form, I would
like to insert those information into the previously mentioned tables and
keep the relation between the records.
Ex.
Table 1. 'users'
Col 1. ID INT Autoincrement
Col 2. UserName
Col 3. Password
Table 2. 'profiles'
Col 1. ID
Col 2. Age
Col 3. Gender
What is the most efficient way to accomplish this task?
Thanks in advance.
Comment