smarty 설치
2005 단어 smarty
define(ROOT, dirname(__FILE__).DIRECTORY_SEPARATOR);
include ROOT."libs/Smarty.class.php";
$tpl=new Smarty;
$tpl->template_dir=ROOT."tpl/"; //
$tpl->compile_dir=ROOT."com"; //
$tpl->config_dir=ROOT."configs"; //
$tpl->left_delimiter="<{"; //
$tpl->right_delimiter="}>";//
$tpl->debugging = true;//
$tpl->error_reporting = E_ALL;//
$tpl->assign('var', 'var'); //$var
$tpl->display('tpl_name.tpl');