I really searched but found nothing.

I'm new at template lite. I add my project template_lite library and I have two files.

test.php is:

 require("../src/class.template.php");
 $tpl = new Template_Lite;
 $tpl->assign("foo","bar");

and test.html is

<html>
    <head>
    <title>Document Title</title>
    </head>
    <body>
          {$foo}
    </body>
</html>

what the wrong is output:"{$foo}"

link|improve this question

36% accept rate
feedback

migrated from webmasters.stackexchange.com Feb 6 at 23:49

This question came from our site for pro webmasters.

1 Answer

According to the documentation you need to set two variables:

There are two variables that you need to set after loading Template Lite: $template_dir and $compile_dir.

require('/path/to/class.template.php');
    $tpl = new Template_Lite;
    $tpl->compile_dir = "compiled/";
    $tpl->template_dir = "templates/";
link|improve this answer
same.. nothing changed :( – Mert Metin Feb 6 at 16:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.