|
|
|
ทำ autocomplete แล้วขึ้่นมาว่า Illegal mix of collation |
|
|
|
|
|
|
|
ทำไม ไม่ใช่ utf8_unicode_ci
-------------------
<meta http-equiv="Content-Type" content="text/html; charset=windows-874"> //ไม่เอา
---------------------
แบบนี้ดีกว่า
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
utf-8 รับได้หลายภาษา และ ไม่มี Problem เวลา query ข้อมูลจะมาหมด
$sql = "select DISTINCT emp_firstname as emp_firstname from temployee where emp_firstname LIKE '%$q%'";
emp_firstname LIKE '%$q%'"; ................? มาจากไหน '%$q%' ? or '%$position1_name%'
$position1_name= $_POST["position1_name"];
<input type="text" size="40" maxlength="90" id="position1_name" name="position1_name" value="" placeholder="ชื่อพนักงาน"/>
|
ประวัติการแก้ไข 2017-10-04 15:41:53
|
|
|
|
Date :
2017-10-04 15:37:01 |
By :
Hararock |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ยังไม่ได้ กำหนดภาษาไทย database
mysql_query('set names tis-620');
แต่แนะนำให้ใช้ utf8 จะดีกว่า
เป็นภาษามาตราฐาน โลก ไม่ใช่ มาตราฐานไทย
อยากจะสนับสนุนของไทยอะนะ แต่มันไม่ได้มาตราฐาน เลยไม่มีกะใจจะหนุน
|
|
|
|
|
Date :
2017-10-04 16:04:13 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองเอา code ตามด้านล่างไปใส่ ยังไม่หายเลยคะ
mysql_query("SET character_set_results=tis620");
mysql_query("SET character_set_client=tis620");
mysql_query("SET character_set_connection=tis620");
Code (PHP)
$host="localhost";
$username="root";
$password="";
$db_name="mydb";
mysql_query("SET character_set_results=tis620");
mysql_query("SET character_set_client=tis620");
mysql_query("SET character_set_connection=tis620");
$con = mysql_connect($host,$username,$password) or die(mysql_error());
mysql_select_db($db_name, $con) or die(mysql_error());
$q = strtolower($_GET["q"]);
if (!$q) return;
$sql = "select DISTINCT emp_firstname as emp_firstname from temployee where emp_firstname LIKE '%$q%'";
$rsd = mysql_query($sql) or die(mysql_error().":<br />".$sql_select) ;
while($rs = mysql_fetch_array($rsd)) {
$cname = $rs['emp_firstname'];
echo "$cname\n";
}
|
|
|
|
|
Date :
2017-10-05 14:05:14 |
By :
pumhonda |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|