1234567891011121314 |
- <?php
- global $_GPC, $_W;
- $GLOBALS['frames'] = $this->getMainMenu();
- $list = pdo_getall('zhtc_yellowset',array('uniacid' => $_W['uniacid']),array(),'','num asc');
- if($_GPC['id']){
- $res=pdo_delete('zhtc_yellowset',array('id'=>$_GPC['id']));
- if($res){
- message('删除成功',$this->createWebUrl('yellowset',array()),'success');
- }else{
- message('删除失败','','error');
- }
- }
- //$count=pdo_get('zhtc_yellowset', array('uniacid'=>$_W['uniacid']), array('COUNT(*) as total'));
- include $this->template('web/yellowset');
|