ตรวจสอบกลุ่มผู้ Log in ยังไงครับ แบบ Admin ไปหน้า A และ User ไปหน้า B
ตรวจสอบกลุ่มผู้ Log in ยังไงครับ
คือผมต้องการจะตรวจสอบว่าคนนี้เป็น Admin ให้ไปหน้า Admin.php ถ้าเป็น User ให้ไป Main.php อะครับ
ผมได้แบ่งกลุ่มของ User และ Admin ใน db แล้ว ชื่อว่า group_priority โดย 0 = user และ 1 = admin ครับ
Code (PHP)
<?php require_once('Connections/NPAG.php'); ?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
if (PHP_VERSION < 6) {
$theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
}
$theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "long":
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
break;
case "double":
$theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
}
?>
<?php
// *** Validate request to login to this site.
if (!isset($_SESSION)) {
session_start();
}
$loginFormAction = $_SERVER['PHP_SELF'];
if (isset($_GET['accesscheck'])) {
$_SESSION['PrevUrl'] = $_GET['accesscheck'];
}
if (isset($_POST['username'])) {
$loginUsername=$_POST['username'];
$password=$_POST['password'];
$MM_fldUserAuthorization = "";
$MM_redirectLoginSuccess = "Main2.php";
$MM_redirectLoginFailed = "LoginFail.php";
$MM_redirecttoReferrer = false;
mysql_select_db($database_NPAG, $NPAG);
$LoginRS__query=sprintf("SELECT username_user, pass_user FROM `user` WHERE username_user=%s AND pass_user=%s",
GetSQLValueString($loginUsername, "text"), GetSQLValueString($password, "text"));
$LoginRS = mysql_query($LoginRS__query, $NPAG) or die(mysql_error());
$loginFoundUser = mysql_num_rows($LoginRS);
if ($loginFoundUser) {
$loginStrGroup = "";
if (PHP_VERSION >= 5.1) {session_regenerate_id(true);} else {session_regenerate_id();}
//declare two session variables and assign them
$_SESSION['MM_Username'] = $loginUsername;
$_SESSION['MM_UserGroup'] = $loginStrGroup;
if (isset($_SESSION['PrevUrl']) && false) {
$MM_redirectLoginSuccess = $_SESSION['PrevUrl'];
}
header("Location: " . $MM_redirectLoginSuccess );
}
else {
header("Location: ". $MM_redirectLoginFailed );
}
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<form id="form1" name="form1" method="POST" action="<?php echo $loginFormAction; ?>">
<p>username :
<input type="text" name="username" id="username" />
</p>
<p>password :
<input type="password" name="password" id="password" />
</p>
<p>
<input type="submit" name="submit" id="submit" value="Submit" />
</p>
</form>
</body>
</html>
Tag : PHP
Date :
2014-02-20 13:24:22
By :
ViRuSz
View :
839
Reply :
8
Code (PHP)
<?
session_start();
mysql_connect("localhost","root","root");
mysql_select_db("mydatabase");
$strSQL = "SELECT * FROM member WHERE Username = '".mysql_real_escape_string($_POST['txtUsername'])."'
and Password = '".mysql_real_escape_string($_POST['txtPassword'])."'";
$objQuery = mysql_query($strSQL);
$objResult = mysql_fetch_array($objQuery);
if(!$objResult)
{
echo "Username and Password Incorrect!";
}
else
{
$_SESSION["UserID"] = $objResult["UserID"];
$_SESSION["Status"] = $objResult["Status"];
session_write_close();
if($objResult["Status"] == "ADMIN")
{
header("location:admin_page.php");
}
else
{
header("location:user_page.php");
}
}
mysql_close();
?>
PHP MySQL กับ Login Form ทำระบบ User ล็อกอิน แบบง่าย ๆ ด้วย PHP และ MySQL โดยทำการตรวจสอบ Username และ Password
Date :
2014-02-20 13:51:12
By :
mr.win
ตามที่ ADMIN บอกเลยคับ
Date :
2014-02-20 15:45:16
By :
nonzabboy
ขอบคุณครับ
Date :
2014-02-20 17:43:11
By :
ViRuSz
คือตอนสร้างฟอร์ม Log in ผมสร้างโดยใช้คำสั่ง User Authentication : Log in User หนะครับเลยอยากทราบว่าพอจะมีคำสั่งสำเร็จรูปที่ check login เลยไหม ป.ล. ผมลองทำตามขั้นตอนด้านบนแล้วมันไปค้างหน้า Check_Login ครับมันไม่ยอมคำนวณ
Date :
2014-02-20 18:40:31
By :
ViRuSz
เป็นงานส่งครับผม
Date :
2014-02-20 20:21:10
By :
ViRuSz
ตาม แอดมินเลย
Date :
2014-02-20 20:55:26
By :
scotch
Load balance : Server 04