Forum Moderators: coopster
Storing HTML in a database does seem very inefficient. DBs are search tools rather than just storage. You will find the file system much more efficient.
I think best is to use the $_SESSION system. It is likely that it works by files already and even if you save sessions to the DB it means that all the session data goes out in a single write.
It's also easier.
yours, Marcus