|
|
|
พี่คับ ผมกำลังทำเว็บ เก็บข้อมูล แต่มันดึงข้อมูล มาเป็นไทยบ้าง เป็นต่างดาวบ้าง |
|
|
|
|
|
|
|
ผมใช้ utf8 และทำตาม ลิงค์นี้ที่มีคนโพสไว้ https://www.thaicreate.com/community/php-mysql-thai.html
ข้อมูล ในฐานข้อมูลเป็นภาษาไทย
เมื่อวานลองเรียกข้อมูลจากฐานมาดูยังเป็นภาษาไทย แต่วันนี้มันเป็นต่างดาว
อยากทราบเบื้องต้นว่า มีปัญหาจากตรงไหน
Code
<?php require_once('../Connections/conn.php'); ?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
$theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
$theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "long":
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
break;
case "double":
$theValue = ($theValue != "") ? "'" . doubleval($theValue) . "'" : "NULL";
break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
}
$editFormAction = $_SERVER['PHP_SELF'];
if (isset($_SERVER['QUERY_STRING'])) {
$editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
}
if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
$insertSQL = sprintf("INSERT INTO `system` (sys_name) VALUES (%s)",
GetSQLValueString($_POST['sys_name'], "text"));
mysql_select_db($database_conn, $conn);
mysql_query("SET NAMES UTF8");
$Result1 = mysql_query($insertSQL, $conn) or die(mysql_error());
$insertGoTo = "add_system.php";
if (isset($_SERVER['QUERY_STRING'])) {
$insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
$insertGoTo .= $_SERVER['QUERY_STRING'];
}
header(sprintf("Location: %s", $insertGoTo));
}
mysql_select_db($database_conn, $conn);
$query_Res_sys = "SELECT * FROM `system` ORDER BY sys_id ASC";
$Res_sys = mysql_query($query_Res_sys, $conn) or die(mysql_error());
$row_Res_sys = mysql_fetch_assoc($Res_sys);
$totalRows_Res_sys = mysql_num_rows($Res_sys);
?><!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>เพิ่มข้อมูลระบบงาน</title>
</head>
<body>
<form action="<?php echo $editFormAction; ?>" method="post" name="form1" id="form1">
<table align="center">
<tr valign="baseline">
<td nowrap="nowrap" align="right">ระบบงาน:</td>
<td><input type="text" name="sys_name" value="" size="32" /></td>
</tr>
<tr valign="baseline">
<td nowrap="nowrap" align="right"> </td>
<td><input type="submit" value="Insert record" /></td>
</tr>
</table>
<input type="hidden" name="MM_insert" value="form1" />
<table border="1" align="center" cellpadding="1" cellspacing="1" bordercolor="#000000">
<tr align="center" bgcolor="#66CC66">
<td width="107">ID</td>
<td width="542" bgcolor="#66CC66">ระบบงาน</td>
</tr>
<?php do { ?>
<tr>
<td align="center"><?php echo $row_Res_sys['sys_id']; ?></td>
<td><?php echo $row_Res_sys['sys_name']; ?></td>
</tr>
<?php } while ($row_Res_sys = mysql_fetch_assoc($Res_sys)); ?>
</table>
</form>
<p> </p>
</body>
</html>
<?php
mysql_free_result($Res_sys);
?>
Tag : - - - -
|
|
|
|
|
|
Date :
2010-02-10 11:23:58 |
By :
palmza |
View :
1079 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
mysql_query("SET NAMES 'UTF8'");
หรือ
Code (PHP)
mysql_query("SET NAMES 'tis620'");
|
|
|
|
|
Date :
2010-02-10 12:06:59 |
By :
Ninezy |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับ
จากใน code ของผม จะนำไปแทรกไว้บรรทัดไหนครับ
รบกวนอีกนิด
จากที่ผมทำไว้ตอนแรกจะแทรกไว้ตรงนี้
mysql_select_db($database_conn, $conn);
mysql_query("SET NAMES UTF8"); <<<<<<<<<<<<<<
$Result1 = mysql_query($insertSQL, $conn) or die(mysql_error());
|
|
|
|
|
Date :
2010-02-10 13:39:11 |
By :
palmza |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คุณ Ninezy ขอบคุณมากครับ
แต่ตอนนี้มันเป็นภาษาไทยอีกแล้ว สงสัยมันจะกลัว คุณ Ninezy คับ
|
|
|
|
|
Date :
2010-02-10 14:08:03 |
By :
palmza |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|