|
|
|
insert ข้อมูลลงใน mysql ด้วยภาษาไทยหรือภาษาอื่นๆ ไม่ได้ครับ |
|
|
|
|
|
|
|
เช็ค structure ของ Table และ Field หรือยังครับว่าเป็น utf8_unicode_ci หรือ utf8_general_ci
ไฟล์เก็บscript มี type เป็น utf8
html meta charset utf8
|
|
|
|
|
Date :
2016-03-07 18:31:21 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
code ที่ทำไว้จะเป็นแบบนี้น่ะครับ
Code (PHP)
<!DOCTYPE html>
<html>
<head>
<title>Sign Pro Management</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<script src="../java/jscolor.js"></script>
<script type="text/javascript">
function logout(){
<?php
//session_start();
if(session_destroy())
{
header("Location: index.php");
}
?>
</script>
<?php
//Save Scrolling Text
$serverName = "localhost";
$userName = "root";
$userPassword = "devu2016";
$dbName = "signpro";
$objCon = mysqli_connect($serverName,$userName,$userPassword,$dbName);
mysql_query("set character set utf8");
/*$strSQL = "INSERT INTO s_scroll (m_username,m_password,m_name ,m_lastname ,m_level) VALUES ('".$_POST["txtUsername"]."',
'".$_POST["txtPassword"]."','".$_POST["txtName"]."','".$_POST["txtLastname"]."','".$_POST["ddlStatus"]."')";*/
if($_POST['save_text']){
if($_POST['T_Name'] != ''){
$strSQL = "INSERT INTO s_scroll (s_name, s_text, s_color, s_bg, s_font, s_size, s_speed) VALUES ('".$_POST["T_Name"]."','".$_POST["T_Text"]."','".$_POST["T_Color"]."','".$_POST["T_BG"]."','".$_POST["T_Font"]."','".$_POST["size"]."','".$_POST["speed"]."')";
$objQuery = mysqli_query($objCon,$strSQL);
}
}
?>
|
|
|
|
|
Date :
2016-03-07 20:36:35 |
By :
serpens |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$objCon = mysqli_connect($serverName,$userName,$userPassword,$dbName);
mysql_query("set character set utf8");
สีแดงกับสีน้ำเงินมันคนละตัวกัน ใช้ร่วมกันไม่ได้ครับ
|
|
|
|
|
Date :
2016-03-07 21:05:48 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อ้อครับเดี๋ยวผมลองเช็คดูก่อนครับ
|
|
|
|
|
Date :
2016-03-07 21:09:37 |
By :
serpens |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|