我有一个名为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');
?>
我有一个名为testfunction.tpl
<body>
<ul>
{$id}
:
{$name}
</ul>
</body>
</html>
当我运行testfun.php
时,我得到了这个输出:
16 : dg
但我希望输出如下:
1:d
d:g
我该怎么办?
答案 0 :(得分:0)
您必须将数据作为数组传递给smarty。所以在PHP中你应该做这样的事情:
while($row=mysql_fetch_array($sel))
{
$data[] = array(
"id" => $row[0],
"name" => $row[1]
);
}
$smarty->assign("data", $data);
然后,在您的Smarty模板中,您必须使用foreach列出您的项目:
{foreach $data as $item}
{$item.id}:{$item.name}
{/foreach}