12345678910111213141516171819202122232425262728 |
- <?php
- global $_GPC, $_W;
- $GLOBALS['frames'] = $this->getMainMenu();
- $pageindex = max(1, intval($_GPC['page']));
- $pagesize=10;
- $sql="select * from".tablename('zhtc_llz')." where uniacid={$_W['uniacid']}";
- $total=pdo_fetchcolumn("select count(*) from".tablename('zhtc_llz')." where uniacid={$_W['uniacid']} ");
- $select_sql =$sql." LIMIT " .($pageindex - 1) * $pagesize.",".$pagesize;
- $list=pdo_fetchall($select_sql);
- $pager = pagination($total, $pageindex, $pagesize);
- if($_GPC['op']=='delete'){
- $res=pdo_delete('zhtc_llz',array('id'=>$_GPC['id']));
- if($res){
- message('删除成功!', $this->createWebUrl('llz'), 'success');
- }else{
- message('删除失败!','','error');
- }
- }
- if($_GPC['status']){
- $data['status']=$_GPC['status'];
- $res=pdo_update('zhtc_llz',$data,array('id'=>$_GPC['id']));
- if($res){
- message('编辑成功!', $this->createWebUrl('llz'), 'success');
- }else{
- message('编辑失败!','','error');
- }
- }
- include $this->template('web/llz');
|