百思不得其解各位大侠帮我
 
第一条为空,后面就正常了。查看数据库没有空记录//php while ($result3 = mysql_fetch_array($query2)) {
$test[] = $result3;
}
$smarty->assign('comments',$test);
$smarty->display('show_comment.tpl');
//smarty tpl<div style="border:1px solid black;padding:20px;width:600px;float:left; margin-top:10px;">
{section name=mysec loop=$comments}
<h5> {$comments[mysec].commentName} said:</h5>
<hr>
<p>{$comments[mysec].commentContent}</p>
<hr><br>
{/section}
</div>