- Code: Select all
class MainController extends DooController{
function tal(){
Doo::loadClass("lib/phptal");
$tpl = new PHPTAL( Doo::conf()->SITE_PATH . Doo::conf()->PROTECTED_FOLDER . "view/repeatTest.html");
$tpl->items = array(1=>"a", 2=>"b", 3=>"c", 4=>"d");
$output = $tpl->execute();
echo $output;
}
I have the Exception
