最土整合9赢cps接口
2011-06-23 16:50 来源:www.chinab4c.com 作者:ecshop专家
1:修改最土数据库
alter table `order` add column cps_type varchar(128) default '';
alter table `order` add column cps_value varchar(128) default '';
2:新建立cps接口文件
require_once(dirname(__FILE__) . '/app.php');
$u_id = $_REQUEST['uid'];
if (!empty($u_id))
{
setcookie('9ycps',$u_id,time()+3600*24*30);
}
if($url == ''){
$url = 'index.php';
}
header("Location:$url");
3:team/buy.php
$9ycps = $_COOKIE['9ycps'];
if(isset($9ycps)){
Table::UpdateCache('order',$order_id,array('cps_type'=>'9ycps'));
Table::UpdateCache('order',$order_id,array('cps_value'=>$9ycps));
}
4:增加查询接口
require_once(dirname(__FILE__) . '/app.php');
$condition['cps_type'] = '9ycps';
$orders = DB::LimitQuery('order', array(
'condition' => $condition,
'order' => 'ORDER BY team_id DESC, id ASC',
));
$team_ids = Utility::GetColumn($orders, 'team_id');
$teams = Table::Fetch('team', $team_ids);
foreach($teams AS $tid=>$one){
team_state($one);
$teams[$tid] = $one;
}
最近更新
常用插件
- ecshop 手机注册验证插件
ecshop 手机注册验证插件 ,需要通过手机获短信,然后注册验证 价格:...
- ecshop提货单插件
ecshop提货单插件,是我们在ecshop二次开发中,根据客户实际需要,通过...
- ecshop后台商品列表编辑属
ecshop后台商品列表编辑属性规格,这个功能十分重要,当我们在后台,录...
- ecshop多位小数显示插件
ecshop多位小数显示插件...
- ecshop订单来源统计插件
我们的站可能会和很多渠道合作。比如我们和baidu合作,我们和google合作...