我是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
我在做什么错