龙盟编程博客 | 无障碍搜索 | 云盘搜索神器
快速搜索
主页 > web编程 > php编程 >

邮箱激活

时间:2014-07-22 14:48来源: 作者: 点击:
分享到:
<无详细内容>
<?php
session_start();
header('Content-Type:text/html;charset=gb2312');
include_once("conn/conn.php");
if (!empty($_GET['name']) && !is_null($_GET['name'])){				//激活注册用户
	$num=$conne->getRowsNum("select * from tb_member where name='".$_GET['name']."' and password = '".$_GET['pwd']."'");
	if ($num>0){
		$upnum=$conne->uidRst("update tb_member set active = 1 where name='".$_GET['name']."' and password = '".$_GET['pwd']."'");
		if($upnum > 0){
			$_SESSION['name'] = $_GET['name'];
			echo "<script>alert('用户激活成功!');window.location.href='main.php';</script>";
		}else{
			echo "<script>alert('您已经激活!');window.location.href='main.php';</script>";
		}
		
	}else{
		echo "<script>alert('用户激活失败!');window.location.href='register.php';</script>";
	}
}
?>
精彩图集

赞助商链接