<?php
include("dbconnect.php");
$sql="select * from moon";
$arr = array();
$i=0;
$result=mysql_query($sql,$con);
while($row=mysql_fetch_array($result))
{
//print_r($row);
$arr[$i]=$row;
$i++;
}
//print_r($arr);
require 'smarty.php';
$smarty->assign('arr',$arr);
$smarty->display('index.htm');
?>
可以不用FOR徇环
//////////////////////////////////////////////////////////////////////////////////////////
$smarty->assign('counts', 5);
{section name=loop loop=$counts}
id: {$smarty.section.loop.index}
{/section}
输出:id: 0 id: 1 id: 2 id: 3 id: 4