Smarty未定义索引变量

时间:2018-08-17 11:37:32

标签: php mysql smarty

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

0 个答案:

没有答案