帝国CMS邮箱验证插件(判断邮箱是否已注册)
此帝国cms插件的编码为GBK/UTF,适用版本ecms6.6,其他版本自行测试。插件大小:207.65KB
1、配置邮箱发送
下载的附件,修改user.php文件
2、判断邮箱是否已注册
e/class/user.php文件下增加下面的代码
function eail_tis($error="",$gotourl="",$ecms=1){邮箱验证
global $empire,$editor,$ecmslang,$public_r;
if($editor==1){$a="../";}
elseif($editor==2){$a="../../";}
elseif($editor==3){$a="../../../";}
else{$a="";}
if(strstr($gotourl,"(")||empty($gotourl))
{
$gotourl_js="history.go(-1)";
$gotourl="javascript:history.go(-1)";
}
else
{$gotourl_js="self.location.href='$gotourl';";}
if(empty($error))
{$error="DbError";}
@include($a."../message/index.php");
$empire=null;
exit();
}
//加入判断是否该邮箱为未注册的
$eail=$empire->fetch1("select count(*) as email from ".$user_tablename." where email='".$email."'");
if ($eail[email]!=0){
eail_tis("该邮箱已注册过了,请使用其他的邮箱注册","history.go(-1)",1);
}
本站提供以下售后服务:
1、源码免费升级,本站出售的源码如果有功能升级的话我们会在第一时间通知购买源码了用户,如果没有通知到你,请主动联系我们获得升级。
标签:
评论