<?php require_once('Smarty.class.php'); $smarty = new Smarty(); $smarty->template_dir = 'd:/smartysample/reserve/templates/'; $smarty->compile_dir = 'd:/smartysample/reserve/templates_c/'; $smarty->config_dir = 'd:/smartysample/reserve/configs/'; $smarty->cache_dir = 'd:/smartysample/reserve/cache/'; $smarty->assign('title', '予約変数のテスト'); $smarty->display('sample3-1.tpl'); ?>