.tpl PHP Include

Discussion in 'HTML & Website Design' started by Traffik_Daddy, Apr 27, 2008.

  1. #1
    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
     
    Traffik_Daddy, Apr 27, 2008 IP
  2. Travis

    Travis Peon

    Messages:
    539
    Likes Received:
    15
    Best Answers:
    0
    Trophy Points:
    0
    #2
    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.
     
    Travis, Apr 27, 2008 IP