emm.. well.. can be done but you have spare alot of you valuable time in terms of coding.. you might have to create alot of tables as well as fields in your database to store those values.. you will also have write alot of code when it comes to loading those values from your database as well.. good luck my fren.. :)
If done well, this could be a cool concept, if done bad your DBA will kick you out of the office. There is a danger of creating a lot of blank fields if you approach this the wrong way. What I would do is build tree tables. That way you will have have no blank fields and hardly any data redundency:
Sorry to pour water on your fire but I recently created a dynamic CSS page using PHP, it used a session variable to control the layout.
This worked fine in IE but didn't work at all in Firefox. My conclusion was that if you are going to have dynamic CSS then you will either have to
Have static external style sheets and use server side scripting in the HTML to decide which style sheet to link to.
Have internal style sheets, then you can use server side scripting to write the files, but this removes 1 of the advantanges of CSS namely the styles are in an external file and don't need downloading everytime.
Comment