smarty+AJAX实例
源代码在线查看: example.php
/*****************************************
Title :Smarty结合Ajax留言板实例
Author:leehui1983(辉老大)
Page Name:index.php
Finish Date :2006-12-17
*****************************************/
require('./libs/Smarty.class.php');//包含smarty类库
// require('./inc/dbclass.php');//包含数据库操作类
require('function.php');
//$db = new db();//生成数据库操作实例
$smarty = new Smarty();//实例化smarty对象
//$smarty->display('example2.tpl');
$content=$smarty->fetch("example2.tpl");
$smarty->MakeHtmlFile('example.html',$content);//
//编译并显示位于./templates下的index.tpl模板
?>