<?php require_once 'smarty/libs/Smarty.class.php'; //實體化 $smarty = new Smarty; //設定變數 $name = 'Tad'; $smarty->assign('my_name', $name); $smarty->display('index.tpl');
進階搜尋