batch.inc.php 761 Bytes
<?php
global $_GPC, $_W;
$GLOBALS['frames'] = $this->getMainMenu2();
$storeid=$_COOKIE["storeid"];
$cur_store = $this->getStoreById($storeid);
$type = pdo_getall('cjdc_table_type',array('uniacid' => $_W['uniacid'],'store_id'=>$storeid));
if(checksubmit('submit')){
for($i=0;$i<$_GPC['table_count'];$i++){
	$data['name']=$_GPC['name'].$i;
	$data['num']=$_GPC['num'];
	$data['type_id']=$_GPC['type_id'];
	$data['tag']=$_GPC['tag'];
	$data['uniacid']=$_W['uniacid'];
	$data['store_id']=$storeid;
	$data['orderby']=$_GPC['orderby'];		
	$data['status']=0;
	$res=pdo_insert('cjdc_table',$data);
}
if($res){
	message('添加成功',$this->createWebUrl('table',array()),'success');
}else{
	message('添加失败','','error');
}

}

include $this->template('web/batch');