在smarty模板中获取数据库值

时间:2012-08-12 07:22:25

标签: smarty

我有一个名为testfun.php

的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

的tpl文件
<body>

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

</body>
</html>

当我运行testfun.php时,我得到了这个输出:

16 : dg 

但我希望输出如下:

1:d
d:g

我该怎么办?

1 个答案:

答案 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}