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>
最佳答案
