top.inc.php 511 B

1234567891011121314
  1. <?php
  2. global $_GPC, $_W;
  3. $GLOBALS['frames'] = $this->getMainMenu();
  4. $list = pdo_getall('zhtc_top',array('uniacid' => $_W['uniacid']),array(),'','num asc');
  5. if($_GPC['id']){
  6. $res=pdo_delete('zhtc_top',array('id'=>$_GPC['id']));
  7. if($res){
  8. message('删除成功',$this->createWebUrl('top',array()),'success');
  9. }else{
  10. message('删除失败','','error');
  11. }
  12. }
  13. $count=pdo_get('zhtc_top', array('uniacid'=>$_W['uniacid']), array('COUNT(*) as total'));
  14. include $this->template('web/top');