dlinacthx.inc.php 532 B

123456789101112131415
  1. <?php
  2. global $_GPC, $_W;
  3. $action = 'start';
  4. $GLOBALS['frames'] = $this->getNaveMenu($_COOKIE['cityname'], $action);
  5. $list = pdo_getall('zhtc_acthxlist',array('act_id' => $_GPC['act_id']),array(),'','id DESC');
  6. if($_GPC['op']=='delete'){
  7. $res=pdo_delete('zhtc_acthxlist',array('id'=>$_GPC['id']));
  8. if($res){
  9. message('删除成功',$this->createWebUrl2('dlinacthx',array('act_id' => $_GPC['act_id'])),'success');
  10. }else{
  11. message('删除失败','','error');
  12. }
  13. }
  14. include $this->template('web/dlinacthx');