Is it at all possible to have a .tpl file to include a php file without having to use an iframe? I need to add an include to .tpl but cannot find any info anywhere. Many thanks TD
You mean include a .tpl file with PHP? Yes. <?php include_once("./file.tpl"); ?> Will work fine. I often use the .tpl extension instead of .inc or .php for template related files, so I can keep them seperate.