I am submitting tags in the form of tag1,tag2,tag3,ect... But I am unsure of how to create the database layout in terms of performance and professionalism.
When someone clicks a tag, I want to query and pull up every page that has that tag.
|
|
The tags themselves go into a tags table. This table only has unique tags
You create a lookup table to match the tag table to the pages table
You then do a join to query which pages have which tags.
|
||||
|
|
|
If this is all you want, then having:
But later on you might want to add things like tags cloud, that will require some data caching (you dont want to rebuild your tags could every time someone tags something, instead do it periodically, once a day, for example). To achieve this you could add another table |
|||
|
|