I'm working on a website that has an edit profile details page. One of the options I have set to edit is the layout. I am trying to control the display of the layout with cookies and mysql queries. Currently I am using if and else statments after the user input is passed via form submission to decide which cookie to set for the layout.
Then, on the actual view profile page that displays the profile, I am using if else statments again with mysql queries (along with a GET variable that is set to the usersname) to decide which layout is called for that user.
Heres the problem. I am having a problem finding the correct way to display the layout (with a sql query) that was chosen for the user that was called with the GET variable.
My users table is laid out with the row names:
id (auto incre)
username
name
age
gender
aboutme
likes
dislikes
music
template_id
and my templates table is set out with the row names:
template_id (auto incre)
Head_Open
Head_Close
Page_End
Date
I thought about some type of join on both tables, but I can't seem to figure it out. I need it so each user is also added multiple times in the templates table or maybe just updated in the templates table for each unique layout in the table.
If anyone can help, I'd appreciate it.