box-o-sand/php-practice/web/html/wikipedia-tutorial/smarty.php

12 lines
215 B
PHP

<?php
require_once("libs/Smarty.class.php");
$smarty = new Smarty();
$smarty->assign("title", "smarty!");
$smarty->assign("bgcolor", "#aef");
$smarty->template_dir = "templates";
$smarty->display("test.tpl");
?>