|
|
|
รบกวนเกี่ยวกับ การใช้ autocomplete หลายๆ ตารางหลายๆ ฟิล หน่อยครับ |
|
|
|
|
|
|
|
Code (PHP)
<?php
header("Content-type:text/html; charset=UTF-8");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
// เชื่อมต่อฐานข้อมูล
include("inc/connect_db.php");
mysql_query("SET NAMES UTF8");
mysql_query("SET character_set_results=UTF8");
mysql_query("SET character_set_client=UTF8");
mysql_query("SET character_set_connection=UTF8");
mb_internal_encoding('UTF-8');
mb_http_output('UTF-8');
mb_http_input('UTF-8');
mb_language('uni');
mb_regex_encoding('UTF-8');
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="teacher , user , subject , research , leaves , trainning , class_room , branch "; // ตารางที่ต้องการค้นหา
[color=blue]$find_field="class_room.class_name"; // ฟิลที่ต้องการค้นหา
$sql = "select * from $table_db
where teacher.user_id = user.user_id
and teacher.user_id = research.user_id
and teacher.user_id = research.user_id
and teacher.user_id = leaves.user_id
and teacher.user_id = trainning.user_id
and teacher.user_id = class_room.user_id
and teacher.user_id = branch.user_id
and locate('$q', $find_field) > 0 order by locate('$q', $find_field), $find_field limit $pagesize";
$results = mysql_query($sql);
while ($row = mysql_fetch_array( $results )) {
$id = $row["class_name"]; // ฟิลที่ต้องการส่งค่ากลับ
$name =$row["class_name"]; // ฟิลที่ต้องการแสดงค่า
// ป้องกันเครื่องหมาย '
$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>";
}
mysql_close();
?>
Code (PHP)
<?PHP
session_start();
include("inc/connect_db.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=utf-8" />
<title>search_menu</title>
<style type="text/css">
.font_white {
color: #FFF;
font-weight: normal;
font-size: 14px;
}
.font_black {
font-size: 14px;
}
.black_button {
font-size: 14px;
text-decoration: none;
font-weight: bolder;
color: #666;
}
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
a:active {
text-decoration: none;
}
</style>
<!--onChange -->
<script language="JavaScript" type="text/JavaScript">
function MM_jumpMenu(targ,selObj,restore){ //v3.0
eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
if (restore) selObj.selectedIndex=0;
}
</script>
<!--autocomplete -->
<script type="text/javascript" src="autocomplete/autocomplete.js"></script>
<link rel="stylesheet" href="autocomplete/autocomplete.css" type="text/css"/>
</head>
<body>
<form id="form1" name="form1" method="post" action="check_search.php">
<table width="350" border="0" cellpadding="0" cellspacing="4">
<tr>
<td width="245" align="right">
<select name="search_id" class="black_button" id="search_id" >
<!--onchange="MM_jumpMenu('parent',this,0)" -->
<option value="0" style="height:22px;" class="black_button">ต้องการค้นหาข้อมูล</option>
<option value="1" style="height:22px;" class="black_button">ข้อมูลทั่วไป</option>
<option value="2" style="height:22px;" class="black_button">ข้อมูลงานวิจัย</option>
<option value="3" style="height:22px;" class="black_button">ข้อมูลการขาดลา</option>
<option value="4" style="height:22px;" class="black_button">ข้อมูลการอบรม</option>
<option value="5" style="height:22px;" class="black_button">วิชาที่สอน</option>
</select>
</td>
<td width="150" align="right">
<input name="class" type="text" id="show_arti_topic" style="width:150px;height:20px;" />
<input name="h_arti_id" type="hidden" id="h_arti_id" value="" />
</td>
<td width="85" align="right"><input type="submit" name="Submit" id="button" class="black_button" style="width:85px;height:30px;" value="ค้นหา" /></td>
</tr>
</table>
</form>
<!-- autocomplete -->
<script type="text/javascript">
function make_autocom(autoObj,showObj){
var mkAutoObj=autoObj;
var mkSerValObj=showObj;
new Autocomplete(mkAutoObj, function() {
this.setValue = function(id) {
document.getElementById(mkSerValObj).value = id;
}
if ( this.isModified )
this.setValue("");
if ( this.value.length < 1 && this.isNotClick )
return ;
return "autocomplete_search.php?q=" +encodeURIComponent(this.value);
});
}
// การใช้งาน
// make_autocom(" id ของ input ตัวที่ต้องการกำหนด "," id ของ input ตัวที่ต้องการรับค่า");
make_autocom("show_arti_topic","h_arti_id");
</script>
</body>
</html>
ตรงฟิลที่ต้องการค้นหาอะ ครับ คือผม อย่ากค้นได้หลายๆ ฟิล ของ หลายๆ ตาราง ควรเพิ่มยังไงหรอครับ
และผมเชื่อม ตาราง จะได้ไหมครับ
Tag : PHP
|
ประวัติการแก้ไข 2013-05-24 21:07:14
|
|
|
|
|
Date :
2013-05-24 21:06:21 |
By :
showroom |
View :
750 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2013-05-25 10:08:24 |
By :
showroom |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|