我对 smarty 有一点问题,但不知道如何解决这个问题。
这是我的 index.tpl
<body>
{include file='header.tpl'}
{include file='leftmenu.tpl'}
<div id=content>
{include file="news.tpl" }
{include file="rightmenu.tpl"}
</body>
我的问题是这条线
<div id=content>
{include file="news.tpl" }
news.php
是一个应该显示的文件news.tpl
,因为它是我的新闻系统。
在news.php
中,我查询 mysql 数据库并将结果提供给news.tpl
.
但是当我写上面的行时,news.tpl
不知道结果来自哪里。
希望有人能帮忙。