0

というphpファイルがありますtestfun.php。データベースから値を取得しているもの

<?php
$conn=mysql_connect("localhost","root","") or die("unabke to connect");
$db=mysql_select_db("smartyform",$conn) or die("databse error");

require 'Smarty/libs/Smarty.class.php';

$smarty = new Smarty;

$sel=mysql_query("select * from form"); 
while($row=mysql_fetch_array($sel))
{
$id=$row[0];
$name=$row[1];
}
$smarty->assign('id',$id);
$smarty->assign('name',$name);

$smarty->display('testfunction.tpl');
    ?>

というtplファイルがありますtestfunction.tpl。このファイルに出力を取得しています

<body>

<ul>
{$id}
 :
 {$name}
</ul>

</body>
</html>

を実行するtestfun.phpと、次の出力が得られました。

16 : dg 

しかし、次のような出力が必要です。

1:d
d:g

私は何をすべきか ?

4

1 に答える 1

1

データを配列に格納します。したがって、tpl で for ループを実行する必要があります。

tpl では次のようになります。

 <ul>
    {foreach from=$your_data item=item_value key=key}
            <li> { $key } : {$item_value}</li>
    {/foreach}
</ul>

あなたのphpで次のようにします:

     require 'Smarty/libs/Smarty.class.php';

    $smarty = new Smarty;
    $your_row= array();
    $sel=mysql_query("select * from form"); 
    while($row=mysql_fetch_array($sel))
    {
       $your_row[]= $row;
    }
    $smarty->assign('your_data',$your_row);
    $smarty->display('testfunction.tpl');
 ?>

詳細については、このページを参照してください: http://www.smarty.net/docsv2/en/language.function.foreach

お役に立てば幸いです。

于 2012-10-19T05:23:00.570 に答える