Hello:
I have a general question related to database structuring. I am going to be creating some dynamic content with PHP out of MySQL. What would be the most efficient way to structure my tables in order to accomplish this task?
Job_Number - The job number will be the identifier for everything below.
Group - Each Header and Topic values will be assigned to a group, there will be a total of 4 groups.
So with that described it will look like the following:
0011 (Job-Number)
Group 1
Header 1
Topic 1
Topic 2
Topic 3
Group 2
Header 2
Topic 1
Topic 2
Topic 4
etc...
Some groups my have more than one Header and Topic pair.
Thanks,
Troy