Hi SpacePhoenix! Thanks for the reply, I really appreciate your help. 

Originally Posted by
SpacePhoenix
How many sets of css are there? If each css set stays the same, perhaps one possibility would be to store the css in separate files in a BLOB field in the database.
Here is an example of what the encoded "data" array looks like:
Code:
Array
(
[container] => 990
[margin] => 10
[foundation] => Array
(
[0] => 990
[1] => 970
...<snip>...
[78] => 15
[79] => 10
)
)
So, for each container/margin, the "foundation" array is different.
Because I am storing the original array, I can generate (and cache) the third page (i.e. combine the css, like I wanted to do in my original post) via the controller and/or the view (I am using the CodeIgniter php framework).
With that said, do you think I should use a blob? Or, do you use a blob to store static stuff (like CSS that does not change, but is needed on every page)?
Thanks for the help!
Cheers,
Micky
Bookmarks