|
|
|
อยากให้กด "ตกลง" เเล้วกลับมาหน้าเดิมอะครับ ? echo "<script>alert('Username and Password Incorrect!');</script>"; |
|
|
|
|
|
|
|
ปาวครับ อันนี้พอเรากรอกหน้า Login ผิดก็จะแจ้งเตือนเด้งขึ้นมา เเต่พอกด "ตกลง" มันไปเป้นหน้าป่าวอะครับ อยากให้มันกลับมาหน้า Login เหมือนเดิมครับ
|
|
|
|
|
Date :
2013-04-10 10:14:38 |
By :
Kaen17 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?
@session_start();
mysql_connect("localhost","root","1234");
mysql_select_db("mydatabase");
$strSQL = "SELECT * FROM tb_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 "<script>alert('Username and Password Incorrect!');
window.location='หน้าของคุณ'; // ระบุ URL ที่คุณต้องการ
</script>";
exit();
}
else
{
$_SESSION["UserID"] = $objResult["UserID"];
$_SESSION["Username"] = $objResult["Username"];
$_SESSION["Status"] = $objResult["Status"];
session_write_close();
if($objResult["Status"] == "ADMIN")
{
header("location:admin_page.php");
}
else
{
header("location:user_page.php");
}
}
mysql_close();
?>
|
|
|
|
|
Date :
2013-04-10 10:17:45 |
By :
Ex-[S]i[L]e[N]t |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับ :)
|
|
|
|
|
Date :
2013-04-10 17:29:48 |
By :
Kaen17 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|