123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?php
- global $_GPC, $_W;
- $action = 'start';
- $GLOBALS['frames'] = $this->getNaveMenu($_COOKIE['cityname'], $action);
- $where=" where uniacid=:uniacid and cityname=:cityname";
- $data[':uniacid']=$_W['uniacid'];
- $data[':cityname']= $_COOKIE['cityname'];
- $type=pdo_getall('zhtc_acttype',array('uniacid'=>$_W['uniacid']));
- if(isset($_GPC['keywords'])){
- $where.=" and title LIKE concat('%', :name,'%') ";
- $data[':name']=$_GPC['keywords'];
- $type='all';
- }
- if(!empty($_GPC['time'])){
- $start=strtotime($_GPC['time']['start']);
- $end=strtotime($_GPC['time']['end']);
- $where.=" and UNIX_TIMESTAMP(time) >={$start} and UNIX_TIMESTAMP(time)<={$end}";
- }
- if($_GPC['type_id']>0){
- $where.=" and type_id=".$_GPC['type_id'];
- }
- $pageindex = max(1, intval($_GPC['page']));
- $pagesize=10;
- $sql="select * from".tablename('zhtc_activity') ."".$where." ORDER BY id DESC";
- $total=pdo_fetchcolumn("select count(*) from".tablename('zhtc_activity')."".$where,$data);
- $select_sql =$sql." LIMIT " .($pageindex - 1) * $pagesize.",".$pagesize;
- $list=pdo_fetchall($select_sql,$data);
- $pager = pagination($total, $pageindex, $pagesize);
- if($_GPC['op']=='delete'){
- $res=pdo_delete('zhtc_activity',array('id'=>$_GPC['id']));
- if($res){
- message('删除成功!', $this->createWebUrl2('dlinactivity'), 'success');
- }else{
- message('删除失败!','','error');
- }
- }
- if($_GPC['op']=='change'){
- $res=pdo_update('zhtc_activity',array('is_bm'=>$_GPC['is_bm']),array('id'=>$_GPC['id']));
- if($res){
- message('修改成功!', $this->createWebUrl2('dlinactivity'), 'success');
- }else{
- message('修改失败!','','error');
- }
- }
- include $this->template('web/dlinactivity');
|