|
|
|
autocomplete กับ MSSQL ทำอย่างนี้หรือป่าวครับ ทำไมมันไม่ขึ้นเลยครับ ผมดัดแปลงจาก ajax php mysql autocomplete textbox ภาษาไทย |
|
|
|
|
|
|
|
Code (PHP)
<?php
header("Content-type:text/html; charset=tis-620");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
// เชื่อมต่อฐานข้อมูล
$servername = "xxxx"; //?ชื่อ? server
$databasename = "xxxx"; //?ชื่อ? database ?บน? MsSQL
$user = "xxxx"; //?username ?ที่?จะ? connect database
$pass = "xxxx"; //?password ?ที่?จะ? connect ?ไปที่? database
$connection_string ="DRIVER={SQL Server};SERVER=$servername;DATABASE=$databasename;AutoTranslate=no"; //?connect แบบ ODBC
$cid = odbc_connect($connection_string,$user, $pass) or die ("?เชื่อม?ต่อ server ไม่?ได้?");
mssql_query("SET NAMES UTF8");
mssql_query("SET character_set_results=tis-620");
mssql_query("SET character_set_client=tis-620");
mssql_query("SET character_set_connection=tis-620");
mb_internal_encoding('tis-620');
mb_http_output('tis-620');
mb_http_input('tis-620');
mb_language('uni');
mb_regex_encoding('tis-620');
ob_start('mb_output_handler');
setlocale(LC_ALL, 'th_TH');
$q = urldecode($_GET["q"]);
//$q= iconv('utf-8', 'tis-620', $_GET['test']);
$pagesize = 50; // จำนวนรายการที่ต้องการแสดง
$table_db="pd_inv"; // ตารางที่ต้องการค้นหา
$find_field="pd_nambill"; // ฟิลที่ต้องการค้นหา
$sql = "select * from $table_db where locate('$q', $find_field) > 0 order by locate('$q', $find_field), $find_field limit $pagesize";
$results = mssql_query($sql);
while ($row = odbc_fetch_array( $results )) {
$id = $row["pd_cod"]; // ฟิลที่ต้องการส่งค่ากลับ
$name =$row["pd_nambill"]; // ฟิลที่ต้องการแสดงค่า
// ป้องกันเครื่องหมาย '
$name = str_replace("'", "'", $name);
// กำหนดตัวหนาให้กับคำที่มีการพิมพ์
$display_name = preg_replace("/(" . $q . ")/i", "<b>$1</b>", $name);
echo "<li onselect=\"this.setText('$name').setValue('$id');\">$display_name</li>";
}
odbc_close();
?>
Tag : PHP, Ms SQL Server 2008
|
|
|
|
|
|
Date :
2012-01-07 11:32:27 |
By :
time.toon |
View :
1775 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เลือกเอาสักอย่างครับ odbc_ กับ mssql_
|
|
|
|
|
Date :
2012-01-07 11:55:45 |
By :
ikikkok |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
jquery ui ง่ายกว่าไหมคับ
|
|
|
|
|
Date :
2012-01-07 17:11:04 |
By :
sleepington |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|