dladdspec.inc.php 999 Bytes
<?php
global $_GPC, $_W;
$action = 'start';
//$GLOBALS['frames'] = $this->getMainMenu2();
$uid=$_COOKIE["uid"];
$storeid=$_COOKIE["storeid"];
$cur_store = $this->getStoreById($storeid);
$GLOBALS['frames'] = $this->getNaveMenu($storeid, $action,$uid);
$list = pdo_get('wpdc_spec',array('id'=>$_GPC['id']));
			$data['name']=$_GPC['name'];
			$data['cost']=$_GPC['cost'];
			$data['goods_id']=$_GPC['dishes_id'];
		if(checksubmit('submit')){
			if($_GPC['id']==''){
				$res=pdo_insert('wpdc_spec',$data);
				if($res){
					message('添加成功',$this->createWebUrl2('dlspec',array('dishes_id'=>$_GPC['dishes_id'])),'success');
				}else{
					message('添加失败','','error');
				}
			}else{
				$res = pdo_update('wpdc_spec', $data, array('id' => $_GPC['id']));
				if($res){
					message('编辑成功',$this->createWebUrl2('dlspec',array('dishes_id'=>$_GPC['dishes_id'])),'success');
				}else{
					message('编辑失败','','error');
				}
			}
		}
include $this->template('web/dladdspec');