volist标签出错

浏览:624 发布日期:2014/06/17 分类:求助交流 关键字: volist标签
这是我的问题,我dump($arr)的时候出现的数组是正常,用volist标签到表里就不可以请问有哪个大神帮忙看看
这下边是源码:
这是Action下的源码:
public function show(){
$id=$_GET['id'];
$m=M('captcha');
$arr=$m->find($id);
dump($arr);
$this->assign('list',$arr);
$this->display();

}
这个show.html那里的源码,求解呀!!!
<table border='1' width="500" align='center'>
<tr>
<th>id</th>
<th>序列号</th>
<th>状态</th>
<th>兑换日期</th>
<th>兑换人手机</th>
</tr>

<volist name='list' id='vo'>
<td><{$vo.id}></td>
<td><{$vo.captcha}></td>
<td><{$vo.status}></td>
<td><{$vo.time}></td>
<td><{$vo.mobile}></td>
</volist>

</table>
最佳答案
评论( 相关
后面还有条评论,点击查看>>