86考网
会考成绩查询
您的位置:首页 > 范文 > IT技术专栏 > CMS教程 >

ECSHOP 验证邮箱送积分、送可用资金、送冻结余额 插件

作者:86考网 发布时间:2015-09-12 09:28:34 [手机版]
摘要:/* 验证用户注册邮件*/ elseif ($action == 'validate_email') { $hash = empty($_GET['hash']) ? '' : trim($_GET['hash']); if ($hash) { include_once(ROOT_PATH . 'includes/lib_passport.php'); $id = register_hash('decode', $hash); if ($id 0) {

/* 验证用户注册邮件*/

elseif ($action == 'validate_email')

{

$hash = empty($_GET['hash']) ? '' : trim($_GET['hash']);

if ($hash)

{

include_once(ROOT_PATH . 'includes/lib_passport.php');

$id = register_hash('decode', $hash);

if ($id > 0)

{

$sql = "UPDATE " . $ecs->table('users') . " SET is_validated = 1 WHERE user_id='$id'";

$db->query($sql);

$sql = 'SELECT user_name, email FROM ' . $ecs->table('users') . " WHERE user_id = '$id'";

$row = $db->getRow($sql);

show_message(sprintf($_LANG['validate_ok'], $row['user_name'], $row['email']),$_LANG['profile_lnk'], 'user.php');

}

}

show_message($_LANG['validate_fail']);

}

修改为

/* 验证用户注册邮件 */

elseif ($action == 'validate_email')

{

$hash = empty($_GET['hash']) ? '' : trim($_GET['hash']);

if ($hash)

{

include_once(ROOT_PATH . 'includes/lib_passport.php');

$id = register_hash('decode', $hash);

if ($id > 0)

{

$sql = 'SELECT is_validated FROM '.$ecs->table('users')." WHERE user_id='$id'";

$row = $db->getRow($sql);

if($row['is_validated'] == 0)

{

$sql = "UPDATE " . $ecs->table('users') . " SET is_validated = 1 WHERE user_id='$id'";

$db->query($sql);

$sql = 'SELECT user_name, email FROM ' . $ecs->table('users') . " WHERE user_id = '$id'";

$row = $db->getRow($sql);

//验证完成 送积分 by gaojin 201003300850

include_once(ROOT_PATH .'includes/lib_common.php');

log_account_change($id, 0, 0, 0, 100,$GLOBALS['_LANG']['register_points']);

show_message(sprintf($_LANG['validate_ok'], $row['user_name'], $row['email']),$_LANG['profile_lnk'], 'user.php');

}

else

{

show_message(sprintf('请不要重复验证', $row['user_name'], $row['email']),$_LANG['profile_lnk'], 'user.php');

}

}

}

show_message($_LANG['validate_fail']);

}

更多信息请查看IT技术专栏


标签: ECSHOP 验证 邮箱 积分 可用资金 冻结 余额 插件
相关推荐
86考网声明:
(一) 由于各方面情况的调整与变化,本网所提供的考试信息仅供参考,敬请以权威部门公布的正式信息为准。
(二) 本网注明来源为其他媒体的稿件均为转载稿,免费转载出于非商业性学习目的,版权归原作者所有。如有内容、版权等问题请在30日内与本网联系。联系方式:邮件 jiansou123#126.com
最近更新
网站地图 | XML地图 | 手机版 | 标签
版权所有 © 2005-2022 www.kaoshi86.com 会考成绩查询 All Rights Reserved
本网站所有信息全是来源于互联网,如有侵权请来电咨询! 粤ICP备15072123号