我是smarty的新手,尝试在从php获取的tpl文件中输出一些结果。在我的 account.php
我把文件放在下面的代码里
<?php
include SMARTYLOADER;
$ad2 = $db->fetchRow("SELECT * FROM ip_ptc");
$smarty->assign("ad2", $ad2);
$smarty->display("account.tpl");
$db->close();
exit();
?>
在我的心里 account.tpl
文件我写了下面的代码来获取结果
{$ad2.country}
但它显示了一个未定义的索引变量 ad2
我怎么了
暂无答案!
目前还没有任何答案,快来回答吧!