0

mysql から選択したクエリは次のとおりです。

$query = mysql_query("SELECT * FROM news");

そして、mysql_fetch_objectorでレコードを取得しようとしてい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>

しかし、コードを実行すると、文字が乱雑になります。どうしたの ?

アップデート:

結果のスクリーンショット 結果のスクリーンショット

4

1 に答える 1

-1

これを見て

    {foreach from=$record as $item}
    <tr>
        <td>{$item.title}</td>
        <td>{$item.visit}</td>
        <td>{$item.date}</td>
    </tr>
    {/foreach}
于 2013-01-17T15:06:50.957 に答える