邮箱激活
时间:2021-07-01 10:21:17
帮助过:22人阅读
<无详细内容>
- 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 "";
- }else{
- echo "";
- }
-
- }else{
- echo "";
- }
- }
- ?>
|