我的原代码是
index.tpl
<!--NAME: index.tpl -->
<html>
<head>
<title>{TITLE}</title>
</head>
<body>
欢迎光临!
</body>
</html><!-- END: index.tpl -->12.php
<?php
include("class.FastTemplate.php3");
$tpl = new FastTemplate("./templates");
$tpl->define(array(main=>"index.tpl"));
$tpl->assign(TITLE,"学PHP找小李");
$tpl->parse(BODY,"main");
$tpl->FastPrint("BODY");