|
|
|
ทำไม Up ขึ้น Host จริง แล้วเข้าระบบไม่ได้ ขึ้นข้อความเตือนตลอด |
|
|
|
|
|
|
|
$_SESSION['UserID'] ไม่มีค่าครับ
ให้ล็อกดูโค๊ดหน้าที่ไปเช็ก user/password กับ DB อะครับ
ดูว่าได้กำหนดค่าให้มันหรือยัง?
|
|
|
|
|
Date :
2012-05-19 18:16:09 |
By :
iamatomix |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตอนยังไม่อัพขึ้นโฮสจริงก็ login เข้าได้ตามปกตินะครับ
Code (PHP)
<?
include("connect.php");
$strSQL = "SELECT * FROM member WHERE Username = '".trim($_POST['txtUsername'])."'
and Password = '".trim($_POST['txtPassword'])."'
and Active = 'Yes' ";
$objQuery = mysql_query($strSQL);
$objResult = mysql_fetch_array($objQuery);
if(!$objResult)
{
echo "<script>alert('ไม่พบ Username และ Password');history.back();</script>";
exit();
}
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();
?>
|
ประวัติการแก้ไข 2012-05-19 18:23:36
|
|
|
|
Date :
2012-05-19 18:22:22 |
By :
hanami001 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|