I have finally given up on finding an answer to this so here's my question. I'm building a FULLY dynamic php site. Part of the site allows custom pages that would be smarter to store in the database; mysql. I stored a file as a binary blob and then tried to load it with an actual php file. However, I got straight test out of it rather than running the code in the database contained page (I echo-ed it though). After looking around, I couldn't find any commands for running text as script. I need to know how to load and RUN a page that is stored in the database. Also, should I be saving the files in a different way? Again, it is just smarter to store these pages in the database rather than have all these custom pages fill up a folder on the server filespace. This would mainly be for easy backup but also because it allows easier management. It's late so I hope I provided sufficient information. Thanks in advance.
Oh, and the file in the database is PHP script, not just HTML that could simply be printed or echo-ed.