一个很简单的问题!
<?php
include('setup.php');
include('connect.php');
$result=mssql_query("select username,gettime,content from wapmsg",$db);
while ($row1=mssql_fetch_array($result))
{
echo "查询成功"."<br>";
/*echo $row1["username"]."<br>";
echo $row1["gettime"]."<br>";
echo $row1["content"]."<br>";*/
}
$smarty->assign("array1",$row1);
$smarty->display("messege.html");
?>
messege.html
<html>
<head>
<title>留言板</title>
</head>
<body bgcolor="tan">
<{foreach item=index1 from=$array1}>
<{foreach item=item1 from=$index1}>
<{$item1}>
<{/foreach}>
<{/foreach}>
</body>
</html>
为什么没有任何东西显示?