Table of Contents
Login example code in php, phplogin example code_PHP tutorial
Jul 12, 2016 am 08:49 AM
login
php
Login
Login login example code in php, phplogin example code
The example in this article shares the specific implementation code of login login in php for your reference, the specific content is as follows
<?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 ?>
Copy after login
The above is the entire content of this article. I hope it will be helpful to everyone in learning PHP programming.
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot Article
Repo: How To Revive Teammates
3 weeks ago
By 尊渡假赌尊渡假赌尊渡假赌
How Long Does It Take To Beat Split Fiction?
3 weeks ago
By DDD
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
1 weeks ago
By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
3 weeks ago
By 尊渡假赌尊渡假赌尊渡假赌

Hot tools Tags

Hot Article
Repo: How To Revive Teammates
3 weeks ago
By 尊渡假赌尊渡假赌尊渡假赌
How Long Does It Take To Beat Split Fiction?
3 weeks ago
By DDD
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
1 weeks ago
By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
3 weeks ago
By 尊渡假赌尊渡假赌尊渡假赌

Hot Article Tags

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian

How To Set Up Visual Studio Code (VS Code) for PHP Development
