Ok here is the deal. I have created a php script that uses a template via a MySQL db. I upload the template into a table and the settings in another table that define the variables in the template table. The ending result is it echos the template along with the values of the variables. The question is, what is the best way to add content? Using includes? If includes, how do I get that to work? The whole template is echoed and when I try to do an include in the template itself it just echos the line and not the value.
So if I did this:
include("file.php");
It just shows that instead of actually including the file. Please help!