欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

邮箱激活

程序员文章站 2022-05-08 10:47:43
...
  1. session_start();
  2. header('Content-Type:text/html;charset=gb2312');
  3. include_once("conn/conn.php");
  4. if (!empty($_GET['name']) && !is_null($_GET['name'])){ //激活注册用户
  5. $num=$conne->getRowsNum("select * from tb_member where name='".$_GET['name']."' and password = '".$_GET['pwd']."'");
  6. if ($num>0){
  7. $upnum=$conne->uidRst("update tb_member set active = 1 where name='".$_GET['name']."' and password = '".$_GET['pwd']."'");
  8. if($upnum > 0){
  9. $_SESSION['name'] = $_GET['name'];
  10. echo "";
  11. }else{
  12. echo "";
  13. }
  14. }else{
  15. echo "";
  16. }
  17. }
  18. ?>
复制代码
相关标签: 邮箱激活