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>
しかし、コードを実行すると、文字が乱雑になります。どうしたの ?
アップデート:
結果のスクリーンショット