[1032]PHP入門
<?php
$news_title="";
$news_content="";
$author="";
//載入小強樣板引擎
include_once('tbs_class.php');
//實體化一個樣板引擎
$TBS =new clsTinyButStrong ;
//套用 index_tpl.html 樣板
$TBS->LoadTemplate('index_tpl.html',False) ;
//顯示頁面
$TBS->Show() ;
?>