|
|
|
โค้ดค้นหากับโค้ดแบ่งหน้ารวมกันตอบหน่อย..จะส่งงานแล้วใครใจบุณบอกด่วนครับ |
|
|
|
|
|
|
|
ตัวอย่าง Code การค้นหาและแบ่งการแสดงผลออกเป็นหลาย ๆ หน้าน่ะครับ
Code (PHP)
<html>
<head>
<title>ThaiCreate.Com PHP & MySQL Tutorial</title>
</head>
<body>
<form name="frmSearch" method="get" action="<?=$_SERVER['SCRIPT_NAME'];?>">
<table width="599" border="1">
<tr>
<th>Keyword
<input name="txtKeyword" type="text" id="txtKeyword" value="<?=$_GET["txtKeyword"];?>">
<input type="submit" value="Search"></th>
</tr>
</table>
</form>
<?
if($_GET["txtKeyword"] != "")
{
$objConnect = mysql_connect("localhost","root","root") or die("Error Connect to Database");
$objDB = mysql_select_db("mydatabase");
// Search By Name or Email
$strSQL = "SELECT * FROM customer WHERE (Name LIKE '%".$_GET["txtKeyword"]."%' or Email LIKE '%".$_GET["txtKeyword"]."%' ) ";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
$Num_Rows = mysql_num_rows($objQuery);
$Per_Page = 2; // Per Page
$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 CustomerID ASC LIMIT $Page_Start , $Per_Page";
$objQuery = mysql_query($strSQL);
?>
<table width="600" border="1">
<tr>
<th width="91"> <div align="center">CustomerID </div></th>
<th width="98"> <div align="center">Name </div></th>
<th width="198"> <div align="center">Email </div></th>
<th width="97"> <div align="center">CountryCode </div></th>
<th width="59"> <div align="center">Budget </div></th>
<th width="71"> <div align="center">Used </div></th>
</tr>
<?
while($objResult = mysql_fetch_array($objQuery))
{
?>
<tr>
<td><div align="center"><?=$objResult["CustomerID"];?></div></td>
<td><?=$objResult["Name"];?></td>
<td><?=$objResult["Email"];?></td>
<td><div align="center"><?=$objResult["CountryCode"];?></div></td>
<td align="right"><?=$objResult["Budget"];?></td>
<td align="right"><?=$objResult["Used"];?></td>
</tr>
<?
}
?>
</table>
<br>
Total <?= $Num_Rows;?> Record : <?=$Num_Pages;?> Page :
<?
if($Prev_Page)
{
echo " <a href='$_SERVER[SCRIPT_NAME]?Page=$Prev_Page&txtKeyword=$_GET[txtKeyword]'><< Back</a> ";
}
for($i=1; $i<=$Num_Pages; $i++){
if($i != $Page)
{
echo "[ <a href='$_SERVER[SCRIPT_NAME]?Page=$i&txtKeyword=$_GET[txtKeyword]'>$i</a> ]";
}
else
{
echo "<b> $i </b>";
}
}
if($Page!=$Num_Pages)
{
echo " <a href ='$_SERVER[SCRIPT_NAME]?Page=$Next_Page&txtKeyword=$_GET[txtKeyword]'>Next>></a> ";
}
mysql_close($objConnect);
}
?>
</body>
</html>
Ref : PHP MySQL Search Record Paging
|
|
|
|
|
Date :
2009-04-21 21:55:04 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
โทษนะแล้วท้าคำค้นมาเยอะๆละแบบว่าหลายตัวอะจะทำไง
|
|
|
|
|
Date :
2009-04-21 23:51:07 |
By :
rattakorn |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบใจมากกกกกกกกกกกกกกกกกกกกกกก
ขอบใจมากกกกกกกกกกกกกกกกกกกกกกก
ขอบใจมากกกกกกกกกกกกกกกกกกกกกกก
ขอบใจมากกกกกกกกกกกกกกกกกกกกกกก
ขอบใจมากกกกกกกกกกกกกกกกกกกกกกก
ขอบใจมากกกกกกกกกกกกกกกกกกกกกกก
ไม่รู้จะขอบใจยังไง
แต่ขอบคุณมากกกกกกกกกกก
|
|
|
|
|
Date :
2009-04-22 01:27:20 |
By :
rattakorn |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากกกกค่ะ (^ ^)(_ _)(^ ^)
รบกวนต่อนะคร้าาา...
เอ่อ....แบ่งหน้าได้แล้ว และถ้าต้องการให้สามารถเลือกได้ว่าต้องการจะแบ่ง หน้าละเท่าไหร่ คือ แสดงข้อมูลออกมาโดยแบ่งหน้าให้แล้ว หน้าละ 10 แต่ถ้าจะให้ผู้ใช้สามารถเลือกจาก drop down list ได้ว่าจะให้มันแบ่งหน้า หน้าละเท่าไหร่ เช่น หน้าละ 5, 10, 20
จะต้องทำยังไงค่ะ.... ขอตัวอย่างโค้ดด้วยนะคะ
|
|
|
|
|
Date :
2009-12-18 07:12:20 |
By :
fumio |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เอาค่าที่ได้จาก drop down list มาใส่ตรงนี้แทนมั้งครับ >>>> $Per_Page = 2;
|
|
|
|
|
Date :
2009-12-18 08:39:37 |
By :
ความรู้เท่าหางอึ่ง |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ยังไม่ค่อยเค่าใจค่ะ (มือใหม่)
...พอจะมีตัวอย่างมั่งป่าวค่ะ ที่แสดงข้อมูลออกมาโดยแบ่งหน้าให้แล้ว หน้าละ 10 และผู้ใช้ก็สามารถเลือกจาก drop down list ได้ด้วยน่ะค่ะ
|
|
|
|
|
Date :
2009-12-19 10:55:12 |
By :
fumio |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากกกกกกกกเลยคับบบบบบบบบบบบบบบบบบบบบบบบบบบบบบบบบบบ แหล่มเลยเพ่
|
|
|
|
|
Date :
2010-01-20 00:44:24 |
By :
thewormraper |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอโทษนะค่ะโค้ด แบ่งหน้า โค้ดนี้ ตอนแรกมันแสดงข้อมูลทั้งหมดหรือป่าวค่ะ
|
|
|
|
|
Date :
2013-07-18 15:10:24 |
By :
supaporn.gig |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|