|
|
|
ค้นหาข้อมูลในฐานข้อมูลโดยใช้ autocomplete ให้แสดงผลลัพธ์ในการค้นหา และเมื่อผลลัพธ์ค้นหาได้หลายหน้าเมื่อคลิกไปหน้าถัดไปให้ได้ผลลัพธ์ที่เราค้นหา |
|
|
|
|
|
|
|
ค้นหาข้อมูลในฐานข้อมูลโดยใช้ autocomplete ให้แสดงผลลัพธ์ในการค้นหาทำยังไงค่ะ
ตอนนี้ทำautocomplete ได้แล้วเหลือแต่ให้แสดงผลข้อมูลที่เราค้นหาค่ะ
และเมื่อผลลัพธ์ค้นหาได้หลายหน้าเมื่อคลิกไปหน้าถัดไปให้ได้ผลลัพธ์ที่เราค้นหาอยู่ค่ะ
หน้าค้นหา
<script type="text/javascript" src="js/jquery-1.4.2.js"></script>
<script type='text/javascript' src="js/jquery.autocomplete.js"></script>
<link rel="stylesheet" type="text/css" href="js/jquery.autocomplete.css" />
<script type="text/javascript">
$().ready(function() {
$("#place").autocomplete("autoCompleteMain.php", {
width: 260,
matchContains: true,
selectFirst: false
});
});
</script>
</head>
<?
$objConnect = mysql_connect("localhost"," "," ") or die("Error Connect to Database");
$objDB = mysql_select_db(" ");
$strSQL = "SELECT * FROM place ";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
$Num_Rows = mysql_num_rows($objQuery);
$Per_Page = 10;
$Page = $_GET["Page"];
if(!$_GET["Page"])
{
$Page=1;
}
$Prev_Page = $Page-1;
$Next_Page = $Page+1;
$Page_Start = (($Per_Page*$Page)-$Per_Page);
if($Num_Rows<=$Per_Page)
{
$Num_Pages = 1;
}
else if(($Num_Rows % $Per_Page)==0)
{
$Num_Pages =($Num_Rows/$Per_Page) ;
}
else
{
$Num_Pages =($Num_Rows/$Per_Page)+1;
$Num_Pages = (int)$Num_Pages;
}
$strSQL .=" ORDER BY id_place ASC LIMIT $Page_Start , $Per_Page";
$objQuery = mysql_query($strSQL);
?>
<form method="get" action="#" name="form">
<table align="center" width="523" border="0">
<tr><div id="content">
<td width="162" height="30" ><strong class="style22">ค้นหาสถานที่</strong></td>
<td width="351"><input type="text" name="place" id="place">
<input type="Submit" value="search" /></td></div>
</tr>
</table>
</form>
<?
while($objResult = mysql_fetch_array($objQuery))
{
?>
</p>
<table width="969" border="2" align="center" cellspacing="0" bordercolor="#663300" bgcolor="#CC9900">
<tr bordercolor="#FF9933">
<td width="957" bordercolor="#663300" bgcolor="#CC9933" class="style13"><div align="center">
<table width="801" border="0">
<tr>
<td width="223" rowspan="3"><div align="left"><img src="myfile/<?=$objResult["picture"];?>"> </div></td>
<td colspan="2"><center><?=$objResult["name_place"];?></center></td>
</tr>
<tr>
<td width="568"><span class="style21">
<?=$objResult["detail"];?></span></td>
</tr>
<tr>
<td><div align="right"><a href="detail.php?id_place=<?=$objResult["id_place"];?>"><img src="image/Modify.png" width="24" height="24" /></a></div></td>
</tr>
</table>
</div></td>
</tr><br >
</table>
<div align="center">
<?
}
?>
<br>
<strong><br>
<span class="style22">Total
<?= $Num_Rows;?>
Record :
<?=$Num_Pages;?>
Page :
<?
if($Prev_Page)
{
echo " <a href='$_SERVER[SCRIPT_NAME]?Page=$Prev_Page'><< Back</a> ";
}
for($i=1; $i<=$Num_Pages; $i++){
if($i != $Page)
{
echo "[ <a href='$_SERVER[SCRIPT_NAME]?Page=$i'>$i</a> ]";
}
else
{
echo "<b> $i </b>";
}
}
if($Page!=$Num_Pages)
{
echo " <a href ='$_SERVER[SCRIPT_NAME]?Page=$Next_Page'>Next>></a> ";
}
mysql_close($objConnect);
?>
<?php
$host="localhost"; // Host name
$username=""; // Mysql username
$password=""; // Mysql password
$db_name=""; // Database name
$con = mysql_connect($host,$username,$password) or die(mysql_error());
mysql_select_db($db_name, $con) or die(mysql_error());
$q = strtolower($_GET["q"]);
if (!$q) return;
$sql = "select DISTINCT name_place from place where name_place LIKE '%$q%'";
$rsd = mysql_query($sql);
while($rs = mysql_fetch_array($rsd)) {
$cname = $rs['name_place'];
echo "$cname\n";
}
?>
Tag : PHP, jQuery
|
ประวัติการแก้ไข 2013-04-16 12:55:15
|
|
|
|
|
Date :
2013-04-16 12:53:06 |
By :
sweetwater |
View :
795 |
Reply :
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
$strSQL = "SELECT * FROM place ";
ตรงนี้ก็ต้องใส่ where ด้วยครับ
จะให้ where จากค่าที่เรา Autocomplete ก็น่าจะโอแล้วนะครับ
|
|
|
|
|
Date :
2013-04-16 21:33:26 |
By :
deawx |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
where จาก Autocomplete หมายความว่ายังไงค่ะ
|
|
|
|
|
Date :
2013-04-19 00:22:52 |
By :
sweetwater |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
$strSQL = "SELECT * FROM place where name_place";
ใส่แบบนี้ไปแล้วมันไม่ขึ้นข้อมูลเลยค่ะ
|
|
|
|
|
Date :
2013-04-19 00:32:50 |
By :
sweetwater |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
หลัง where จะใช้ = , !=, LIKE,IN, อะไรก็ว่ากันไปครับ ไม่ใช่ตั้งขึ้นมาโดด ๆ
เช่นอยากให้แสดง ตามเหตุผลอะไร
where name_place='เจดีย์' หรือ ='%เจดี%'
อะไรแบบนี้ครับ
หากไม่เข้าใจให้ลองกลับไปศึกษาเรืื่องของ mysql กับการค้นหา ในบทความของเว็บก็มีครบครับ
|
|
|
|
|
Date :
2013-04-19 04:03:05 |
By :
deawx |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|