|
|
|
echo ออกมาแล้วไม่เป็นภาไทยอ่ะครับ ทั้งที่่ตั้งเป็น utf8 แล้วครับ |
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2011-09-01 10:06:36 |
By :
mangkunzo |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอดูโค้ดหน้า config หน่อยสิครับ
ปล. ถ้าใช้ editplus เวลาเซฟก็ทำตามพี่ด้านบนบอกเลยครับ
|
ประวัติการแก้ไข 2011-09-01 10:08:01
|
|
|
|
Date :
2011-09-01 10:06:59 |
By :
fogza |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<?
$dbuser ="root";
$dbpass ="1234";
$host ="localhost";
$db = "news_data";
$connect =mysql_connect($host,$dbuser,$dbpass) or die ("ไม่สามารถติดต่อ Database ได้");
mysql_select_db($db) or die ("เลือกฐานข้อมูลไม่ได้");
mysql_query("SET NAMES utf8");
?>
|
|
|
|
|
Date :
2011-09-01 10:08:19 |
By :
aunworking |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองทำแล้วครับคุณ mangkunzo ขอบคุณครับ ยังไม่หายง่ะครับ
|
|
|
|
|
Date :
2011-09-01 10:15:40 |
By :
aunworking |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
mysql_query("SET NAMES utf8",$connect);
ลองดูครับ
|
|
|
|
|
Date :
2011-09-01 13:20:11 |
By :
fogza |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?
$host="hostname";
$user="username";
$pass="password";
$db="dbname";
mysql_connect($host,$user,$pass) or die ("ติดต่อโฮสต์ไม่ได้");
mysql_select_db($db) or die ("ติดต่อฐานข้อมูลไม่ได้");
$cs1 = "SET character_set_results=utf8";
mysql_query($cs1) or die('Error query: ' . mysql_error());
$cs2 = "SET character_set_client = utf8";
mysql_query($cs2) or die('Error query: ' . mysql_error());
$cs3 = "SET character_set_connection = utf8";
mysql_query($cs3) or die('Error query: ' . mysql_error());
date_default_timezone_set('Asia/Bangkok')
?>
|
|
|
|
|
Date :
2011-09-01 20:35:00 |
By :
mangkunzo |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|