我有一個聰明的小問題,但不知道如何解決這個問題。Smarty包含tpl動態內容?
這是我在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
,因爲這是我newssystem文件。
在news.php
,我查詢MySQL數據庫和結果交予news.tpl
。
但是當我寫上面的行中,news.tpl
不知道在哪裏,結果從何而來。
希望有人能夠幫助。
你必須到'news.php'代碼移動到'index.php'。或'index.php'其他包括'news.php'並沒有定義'模板tenderer'路徑有.. – Sahal