volist 使用

浏览:4634 发布日期:2013/07/29 分类:技术分享 关键字: volist
php代码:public function counter(){
        $counter=array(
            '总参会单位'=>$count_work.'个单位',
            '总参会代表'=>$count_member.'位参会代表',
            '在线新注册单位'=>$count_re_work.'个单位',
            '在线新注册个人'=>$count_re_member.'位参会代表',

        );
        $this->assign('counter',$counter);
        $this->display();

}
web页面:
 <table width="98%" >
        <tr bgcolor="#EEF4EA">
            <td colspan="2" background="/CMS/hw/Public/admin/images/wbg.gif" class='title'><span>报名信息</span></td>
        </tr>
        <volist name="counter" id="vo">
            <tr bgcolor="#FFFFFF">
                <td width="30%">{$key}:</td>
                <td>{$v}</td>
            </tr>
        </volist>
    </table>
最佳答案
评论( 相关
后面还有条评论,点击查看>>