|
|
|
Alert ของข้อความไม่เป็นภาษาไทย เฉพาะ IE แต่เบาเซอร์อื่นใช้ได้ปกติ... |
|
|
|
|
|
|
|
ไว้ด้านบนสุดครับ
Code (PHP)
<meta http-equiv='Content-Type' content='text/html; charset=utf-8'>
|
|
|
|
|
Date :
2013-02-22 16:24:56 |
By :
Ex-[S]i[L]e[N]t |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ปัญหานี้มีทุกวันเลย ผมอยากให้พี่วินปักหมุดวิธีแก้ปัญหาไว้ด้านบนครับ ไม่งั้นต้องมาตอบทุกวันแน่ๆ
|
|
|
|
|
Date :
2013-02-22 16:26:43 |
By :
arm8957 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ให้ alert หลังจาก Onload จะดีกว่าครับ
Code (JavaScript)
<?php
session_start();
$ses_idno = $_SESSION[IDNo];
$ses_username = $_SESSION[Username];
mysql_connect("localhost","root","root");
mysql_select_db("account");
$strSQL = "SELECT * FROM TBL_Username WHERE Username = '".trim($_POST['txt_user'])."'
and Password = '".trim($_POST['txt_pass'])."'";
$objQuery = mysql_query($strSQL);
$objResult = mysql_fetch_array($objQuery);
$strError = "";
if(!$objResult)
{
$strError = "Username หรือ Password ไม่ถูกต้อง";
}
else
{
$_SESSION["IDNo"] = $objResult["IDNo"];
$_SESSION["Username"] = $objResult["Username"];
$_SESSION["Status"] = $objResult["Status"];
session_write_close();
if($objResult["Status"] == "ADMIN")
{
header("location:menu.php");
}
else
{
header("location:Testmenu.php");
}
}
mysql_close();
?>
<!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>check_login</title>
</head>
<body OnLoad="javascript:alertError();">
<script language="JavaScript">
function alertError()
{
<?if($strError != "") { ?>
alert('<?=$strError;?>');
<? } ?>
}
</script>
</body>
</html>
|
|
|
|
|
Date :
2013-02-22 16:29:13 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Error ที่พี่วินให้แก้ได้แล้วครับ คือชื่อ Database ผิด นะครับ.. แต่กรณีที่ alert คราวนี้ทุกเบาเซอร์ ไม่เป็นภาษไทยเลยครับ...
|
|
|
|
|
Date :
2013-02-25 15:04:48 |
By :
SARAWUT |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|