acthx.inc.php 475 B

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