<?php require_once('Smarty.class.php'); $smarty = new Smarty(); $smarty->template_dir = 'd:/smartysample/config/templates/'; $smarty->compile_dir = 'd:/smartysample/config/templates_c/'; $smarty->config_dir = 'd:/smartysample/config/configs/'; $smarty->cache_dir = 'd:/smartysample/config/cache/'; $smarty->assign('title', 'Test'); $smarty->display('sample3-1.tpl'); ?>