-
2004-02-11
smarty学习感悟(经典实例)
版权声明:转载时请以超链接形式标明文章原始出处和作者信息及本声明
index.htm 模版页
http://wohugb.blogbus.com/logs/87009.html
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=big5">
<title><{$title}></title>
</head>
<body>
<{$content}>
</body>
</html>index.php 应用页
<?
$title="Hello World";
$content="喂,世界你好吗?";
require "smarty.inc.php";
$smarty=new smarty;
$smarty->assign("title", $title);
$smarty->assign("content",$content);
$tpl->display('index.htm');
?>
收藏到:Del.icio.us








评论