Home  >  Article  >  Backend Development  >  Login login_PHP tutorial in php

Login login_PHP tutorial in php

WBOY
WBOYOriginal
2016-07-21 15:57:393121browse

login
require "../include/DBClass.php";
$username=$_POST['UserName'];
$password=$_POST['Password'] ;
if(empty($username) || empty($password)){
Go_Msg("Please fill in the username and password!","../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("The registered user has not passed the administrator review or the username and password do not match! Please re-enter! ","../default.html");
exit;
}else{
$Rs = $db -> fetch_array($result);
//Add value and log in
session_register("username");
session_register("usertype");
$_SESSION["usertype"]=$Rs['UserType'];
$_SESSION["username"]= $username;
//echo $_SESSION["username"];
if ($_SESSION["usertype"]==1){
Go_Msg("Login successful!","default.php" );

//header('Location:http://163.com');
}
if ($_SESSION["usertype"]==2){
Go_Msg ("Login successful! ","../user2/default_1.php");
}
if ($_SESSION["usertype"]==3){

Go_Msg("Login successful!"," ../user3/default_2.php");
}
// header('Location:default.php');
}
DBClose();

?> ;

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/317772.htmlTechArticlelogin ?php require"../include/DBClass.php"; $username=$_POST['UserName' ]; $password=$_POST['Password']; if(empty($username)||empty($password)){ Go_Msg("Please fill in the username and password!...
Statement:
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