123456789101112131415161718192021222324252627 |
- <?php
- global $_GPC, $_W;
- $GLOBALS['frames'] = $this->getMainMenu();
- $item=pdo_get('zhtc_system',array('uniacid'=>$_W['uniacid']));
- // print_r($item);die;
- if(checksubmit('submit')){
- //$data['rz_xuz']=html_entity_decode($_GPC['rz_xuz']);
- $data['ft_xuz']=html_entity_decode($_GPC['ft_xuz']);
- $data['pc_xuz']=html_entity_decode($_GPC['pc_xuz']);
- $data['uniacid']=$_W['uniacid'];
- if($_GPC['id']==''){
- $res=pdo_insert('zhtc_system',$data);
- if($res){
- message('添加成功',$this->createWebUrl('instructions',array()),'success');
- }else{
- message('添加失败','','error');
- }
- }else{
- $res = pdo_update('zhtc_system', $data, array('id' => $_GPC['id']));
- if($res){
- message('编辑成功',$this->createWebUrl('instructions',array()),'success');
- }else{
- message('编辑失败','','error');
- }
- }
- }
- include $this->template('web/instructions');
|