label.inc.php 440 B

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