|
|
|
เพิ่มข้อมูลลง db แต่ขึ้นข้อความมาแปลกๆ ไม่รู้เกิดจากสาเหตุอะไร |
|
|
|
|
|
|
|
หน้าอัพโหลดขึ้น mysql สั่งให้เป็น utf-8 ยังครับ?
|
|
|
|
|
Date :
2013-05-06 18:07:54 |
By :
itpcc |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
สั่งไปแล้วครับทุกหน้า db mysql ใช้ utf8_unicode_ci ครับ
หน้า แอดข้อมูล
Code (PHP)
<!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>เว็บ 3.0</title>
</head>
<body>
<?
//include "connect.php";
$objConnect = mysql_connect("localhost","fqa","") or die("Error Connect to Database");
$objDB = mysql_select_db("fqa");
$strSQL = "INSERT INTO fqa";
$strSQL .="(id,head,detail,num)";
$strSQL .="VALUES ";
$strSQL .="('".$_POST["id"]."','".$_POST["head"]."','".$_POST["detail"]."' ";
$strSQL .=",'".$_POST["num"]."')";
//,'".$_POST["txtBudget"]."','".$_POST["txtUsed"]."') ";
$objQuery = mysql_query($strSQL);
mysql_query("SET CHARACTER SET utf8");
if($objQuery)
{
echo "<script language='javascript'>alert('บันทึกเรียบร้อย ');</script>";
print "<meta http-equiv=refresh content=2;URL=sendfaq.php?mode=yes>";
exit();
}
else
{
echo "<script language='javascript'>alert('ไม่สามารถบันทึกคำถามหรือดำเนินการอย่างอื่นได้ โปรดติดต่อผู้ดููแลระบบ [".$strSQL."]');</script>";
print "<meta http-equiv=refresh content=2;URL=faq_new.php>";
exit();
}
mysql_close($objConnect);
?>
<meta http-equiv="refresh" content="2; URL=sendfaq.php?mode=yes">
</body>
</html>
ขอบคุณครับ
|
|
|
|
|
Date :
2013-05-07 17:44:58 |
By :
plomplam.2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|