1234567891011121314151617181920212223242526 |
- <?php
- global $_GPC, $_W;
- // $action = 'ad';
- // $title = $this->actions_titles[$action];
- $GLOBALS['frames'] = $this->getMainMenu();
- $item=pdo_get('zhtc_system',array('uniacid'=>$_W['uniacid']));
- if(checksubmit('submit')){
- $data['fx_money']=$_GPC['fx_money'];
- $data['uniacid']=trim($_W['uniacid']);
- if($_GPC['id']==''){
- $res=pdo_insert('zhtc_system',$data);
- if($res){
- message('添加成功',$this->createWebUrl('fenx',array()),'success');
- }else{
- message('添加失败','','error');
- }
- }else{
- $res = pdo_update('zhtc_system', $data, array('id' => $_GPC['id']));
- if($res){
- message('编辑成功',$this->createWebUrl('fenx',array()),'success');
- }else{
- message('编辑失败','','error');
- }
- }
- }
- include $this->template('web/fenx');
|