1 添加一个红包
促销打点-->红包范例-->添加红包范例,如图:
2 修改user.php
if (register($username, $password, $email, $other) !== false){
在这一段代码下面添加
/* 用户注册就发红包 */$bonus = $db->getRow('SELECT * FROM ' . $ecs->table("bonus_type") . ' WHERE send_type = 0 And type_id = 1 ', true);
if($bonus){
if(time()<($bonus['send_end_date']+10)){
$sql = "INSERT INTO " . $ecs->table('user_bonus') .
"(bonus_type_id, bonus_sn, user_id, used_time, order_id, emailed) " .
"VALUES ('$bonus[type_id]', 0, '$_SESSION[user_id]', 0, 0, 0)";
$db->query($sql);
}
}
type_id 指你红包的ID号,查察红包ID的要领:促销打点—红包范例—鼠标指到相关的红包,看你欣赏器下面的链接地点。
ECShop下载:
ECShop GBK v2.7.3 Release 1106下载