index.php
<?
require("C:\AppServ\www\Smarty\Smarty.class.php");
// 匯入smarty class 的檔案,必須是絕對路徑
$smarty = new Smarty();
// new 一個 smarty 物件
$smarty -> setTemplateDir('/Smarty/templates');
// 範本 放 html
$smarty -> setCompileDir('/Smarty/templates_c');
// 編譯後的 ..
$smarty -> setCacheDir('/Smarty/cache');
// 快取資料夾
$smarty -> setConfigDir('/Smarty/configs');
// 設定檔資料夾
$smarty -> assign('name','stephen');
$smarty -> assign('title','我的第一個 smarty');
// 指定 name 變數為 stephen
$smarty -> display('index.tpl');
// 指定顯示的檔案
?> |