|
|
|
ช่วยดู code ให้หน่อยคับ คือว่า หน้านี้เป็นหน้าเช็คล็อคอิน ถ้า status =1 จะไปที่หน้า wellcome_health.php ถ้า status =2 จะไปที่หน้า wellcome_health_admin.php |
|
|
|
|
|
|
|
$sqlChk="SELECT Username,Password from tb_member where Username='$Username' and Password='$Password' and Status='$Status'";
if (mysql_num_rows($chk))
{
if ($Status = '1')
// redirect 1
else
// redirect 2
exit;
}
http://www.pjgunner.com
|
|
|
|
|
Date :
2011-05-25 11:16:37 |
By :
pjgunner.com |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?
session_start();
mysql_connect("localhost","root","root");
mysql_select_db("mydatabase");
$strSQL = "SELECT * FROM member WHERE Username = '".trim($_POST['txtUsername'])."'
and Password = '".trim($_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();
?>
Go to : PHP MySQL กับ Login Form ทำระบบ User ล็อกอิน แบบง่าย ๆ ด้วย PHP และ MySQL โดยทำการตรวจสอบ Username และ Password
|
|
|
|
|
Date :
2011-05-25 11:21:17 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
พอดี status มี 0,1,2 ระดับคือ 0 เข้าใช้งานไม่ได้ 1 จะเป็น User ทั่วไป 2 จะเป็น Admin อ่ะคับ
|
|
|
|
|
Date :
2011-05-25 11:35:00 |
By :
supasin_cpe |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คุณก็เขียน if หรือ switch เช็คเอาตามสถานะที่คุณมีซิครับ
|
|
|
|
|
Date :
2011-05-25 12:29:55 |
By :
PlaKriM |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|