James T Brock
02-27-2005, 05:08 PM
I have this in my php include start template:
ob_start();
require("SCRIPT-URL_HERE");
$scriptNAMEhere = ob_get_contents();
ob_end_clean();
And I include it in a template with the code $scriptNAMEhere
This works for all regular templates, how do I get it to work with vbAdvanced? I know how to include php in a module, but this code needs to be included between the header tags and not in a module. How do I do it?
ob_start();
require("SCRIPT-URL_HERE");
$scriptNAMEhere = ob_get_contents();
ob_end_clean();
And I include it in a template with the code $scriptNAMEhere
This works for all regular templates, how do I get it to work with vbAdvanced? I know how to include php in a module, but this code needs to be included between the header tags and not in a module. How do I do it?