/***** auto complete.php **/ ทดลองรัน ไฟล์ auto complete.php ก็เเสดงภาษาไทยได้ปกติ <!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=tis-620">
<title>Auto complete</title>
</head>
<body>
<?
$q=$_GET['q'];
$my_data=str_replace('\'', '\'\'', $q); /* ใส่เครื่องหมาย \ เข้าไปหน้า special characters */
$objConnect=mssql_connect("localhost","admin","sa2008") or die("can't connect to MS SQL Server Error: " . mssql_get_last_message());
mssql_select_db("DBfixasst_gp",$objConnect);
$sql="SELECT [desc] FROM gldept WHERE [desc] LIKE '%$my_data%' ORDER BY [desc]";
$result = mssql_query($sql) or die ("Error Query [".$sql."]");