php中的登陆login实例代码

2025-05-29 0 70

本文实例为大家分享了php中的登陆login具体实现代码,供大家参考,具体内容如下

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43
<?php

require "../include/DBClass.php";

$username=$_POST['UserName'];

$password=$_POST['Password'];

if(empty($username) || empty($password)){

Go_Msg("请填写用户名,密码!","../default.html");

exit;

}

DBConn();

$password=md5($password);

$SQL = "Select UserName,UserType,UserPass From siteuser where UserName='" . $username ."' and UserPass='" . $password . "' and isopen=1";

//echo "$SQL";

$result = $db -> exec_SQL($SQL);

$total=mysql_num_rows($result);

if($total==0){

DBClose();

Go_Msg("注册用户还没有通过管理员审核或用户名及密码不符!请重新输入!","../default.html");

exit;

}else{

$Rs = $db -> fetch_array($result);

//附值,并登录

session_register("username");

session_register("usertype");

$_SESSION["usertype"]=$Rs['UserType'];

$_SESSION["username"]=$username;

//echo $_SESSION["username"];

if ($_SESSION["usertype"]==1){

Go_Msg("登陆成功!","default.php");

//header('Location:http://163.com');

}

if ($_SESSION["usertype"]==2){

Go_Msg("登陆成功!","../user2/default_1.php");

}

if ($_SESSION["usertype"]==3){

Go_Msg("登陆成功!","../user3/default_2.php");

}

// header('Location:default.php');

}

DBClose();

// 何问起 hovertree.com

?>

以上就是本文的全部内容,希望对大家学习PHP程序设计有所帮助。

收藏 (0) 打赏

感谢您的支持,我会继续努力的!

打开微信/支付宝扫一扫,即可进行扫码打赏哦,分享从这里开始,精彩与您同在
点赞 (0)

声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。

快网idc优惠网 建站教程 php中的登陆login实例代码 https://www.kuaiidc.com/97133.html

相关文章

发表评论
暂无评论