|
|
|
insert ค่า sql server อะค่ะ ปัญหาภาษาอะต่างดาวแต่ select ออกมาอ่านไทยได้ |
|
|
|
|
|
|
|
คือ insertค่าลง sql server 2008 อะค่ะ แล้วมันเป็น เทสสสสสสสส แต่เวลา select มาอ่าน อ่านออกมาเป็นภาษาไทยนะค่ะ จะแก้ยังไงอะค่ะ
โค้ดส่วนรับค่าค่ะ
index.php
<html>
<head>
<meta http-equiv="content-type" content="charset=UTF-8" />
</head>
<body>
<form action="sql.php" method="get">
<input type="text" name="user" value=""/>
<input type="submit" name="sm" value="submit"/>
</form>
</body>
</html>
ส่วนส่งค่านะค่ะ
sql.php
<?php
function connectDB()
{
$connection_string = "DRIVER={SQL Server};SERVER=$servername;DATABASE=$databasename;AutoTranslate=no;charset=UTF-8;";
$con=odbc_connect($connection_string,$user, $pass);
$result = odbc_exec($con, $sql) or die("Error Query [" . $sql . "]");
return $con;
}
//iconv('TIS-620','UTF-8',odbc_result($rs,"head"));
//$user=iconv('TIS-620','UTF-8',($_GET['user']));
$user=$_GET['user'];
$con=connectDB();
$sql="INSERT into tb3_check(Approve) values(N'$user')";
//$sql = iconv('TIS-620', 'UTF-8', $sql);
echo $sql;
$rs=odbc_exec($con,$sql);
?>
<html>
<head>
<meta http-equiv="content-type" content="charset=UTF-8" />
</head>
</html>
Tag : PHP, Ms SQL Server 2008
|
|
|
|
|
|
Date :
2011-06-10 10:39:25 |
By :
lim17 |
View :
4048 |
Reply :
5 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่ใช่ต่างดาวหรอกครับ ดูแล้วคาดว่าเป็น ภาษา UTF-8
|
|
|
|
|
Date :
2011-06-10 10:49:31 |
By :
compeng |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แล้วต้องแก้ไงอะค่ะ
|
|
|
|
|
Date :
2011-06-10 10:51:04 |
By :
lim17 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<?
$servername = "xxx";
$databasename = "xxx";
$user = "sa";
$pass = "xxx";
$connection_string = "DRIVER={SQL Server};SERVER=$servername;DATABASE=$databasename;AutoTranslate=no";
$cid = odbc_connect($connection_string,$user, $pass);
if ( !$cid )
{
echo "DisConnect with SQL SERVER for SAPSERVER";
exit();
}
?>
ตามนี้น่าจะได้ครับ
|
|
|
|
|
Date :
2011-08-22 13:04:25 |
By :
fossil |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<meta http-equiv="content-type" content="charset=UTF-8" />
ไม่ต้องใส่ ครับ
|
|
|
|
|
Date :
2011-08-22 13:08:33 |
By :
fossil31 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|