我从 mysql 中选择的查询是:
$query = mysql_query("SELECT * FROM news");
然后我尝试使用mysql_fetch_object
or获取记录mysql_fetch_array
:
$result = mysql_fetch_object($query);
然后我将此变量传递给 Smarty :
$smarty->assign('record',$result);
在我的 smarty tpl 文件中,我的代码是:
<table>
{foreach $record as $item}
<tr>
<td>{$item.title}</td>
<td>{$item.visit}</td>
<td>{$item.date}</td>
<td>{$item.date}</td>
<td>{$item.date}</td>
<td>{$item.date}</td>
<td>{$item.date}</td>
</tr>
{/foreach}
</table>
但是在我运行我的代码之后,我会得到混乱的字符。有什么问题 ?
更新:
结果截图