|
|
|
ค้นหาและแสดงข้อมูลเป็นหน้าข้อมูลออกไม่หมดครับ ทำตามตัวอย่างแล้วยังไม่ได้ครับ |
|
|
|
|
|
|
|
จากลิ้งค์นี้ครับ
https://www.thaicreate.com/php/forum/034786.html
ปัญหาคือข้อมูลออกแค่หน้าเดียวหน้าต่อไปไม่ออกครับ
Code (PHP)
4r<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874">
</head>
<body>
<?
include("menu.php");
?>
<form name="frmSearch" method="get" action="<?=$_SERVER['SCRIPT_NAME'];?>">
<table width="865" border="1" align="center">
<tr> </tr>
</table>
<table width="599" border="1" align=center>
<tr>
<th>กรอกชื่อหรือนามสกุล
<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("police_mamber");
$strSQL=" SELECT ps.ps_id,ps.positionname ,ob.id,ob.rank,ob.sex,ob.name,ob.lastname,ob.daypositionnow , ob.manset,ob.othergrad , position.idposition, position.position FROM ob
LEFT JOIN position ON ob.idposition = position.idposition
LEFT JOIN ps ON ob.id = ps.id
where (positionname LIKE '%".$_GET["txtKeyword"]."%' )
and position.position IS NOT NULL ";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
$Num_Rows = mysql_num_rows($objQuery);
mysql_db_query($dbname,"SET NAMES tis620");
mysql_query("SET character_set_database ='tis620'");
mysql_query("SET character_set_results ='tis620'");
mysql_query("SET character_set_client ='tis620'");
mysql_query("SET character_set_connection ='tis620'");
mysql_query("SET character_set_system ='tis620'");
mysql_query("collation_connection = tis620_thai_ci");
mysql_query("collation_database = tis620_thai_ci");
mysql_query("collation_server = tis620_thai_ci");
$Per_Page = 100; // 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 id ASC LIMIT $Page_Start , $Per_Page";
$objQuery = mysql_query($strSQL);
?>
<center><table width="1000" border="1">
<tr>
<center>
<th width="70"> <div align="center" >ลำดับที่</div></th>
<th width="60"> <div align="center" >ยศ</div></th>
<th width="70"> <div align="center" >เพศ</div></th>
<th width="70"> <div align="center" >ชื่อ</div></th>
<th width="180"> <div align="center" >นามสกุล</div></th>
<th width="180"> <div align="center" >เลขตำแหน่ง</div></th>
<th width="150"> <div align="center" >ตำแหน่ง</div></th>
<th width="150"> <div align="center" >วันที่</div></th>
<th width="150"> <div align="center" >คุณวุฒิแต่งตั้ง</div></th>
<th width="150"> <div align="center" >อื่นๆ</div></th>
</>
</tr>
<?
while($objResult = mysql_fetch_array($objQuery))
{
?>
<tr>
<td><?=$objResult["id"];?></div></td>
<td><?=$objResult["rank"];?></td>
<td><?=$objResult["sex"];?></td>
<td><?=$objResult["name"];?></div></td>
<td ><?=$objResult["lastname"];?></td>
<td ><?=$objResult["idposition"];?></td>
<td ><?=$objResult["position"];?></td>
<td ><?=$objResult["sv"];?></td>
<td ><?=$objResult["pbg"];?></td>
<td ><?=$objResult["pgg"];?></td>
<td ><?=$objResult["levelmaster"];?></td>
<td bgcolor="#EEEEEE"><a href='dbpoliceshow.php?id=<?php echo $objResult["id"]; ?>',<?=$objResult["FilesID"];?>>edit</a>
</tr>
<?
}
?>
</table>
<br>
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);
}
?>
</body>
</html>
Tag : PHP, MySQL
|
ประวัติการแก้ไข 2013-06-02 10:53:42
|
|
|
|
|
Date :
2013-06-02 10:45:17 |
By :
puldool |
View :
655 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เพราะน้องไม่ได้ส่ง $_GET["txtKeyword"] ไปยังหน้าต่อไปไงล่ะครับ
|
|
|
|
|
Date :
2013-06-02 13:19:16 |
By :
cookiephp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
พี่ครับ ผมแก้ไขเพิ่มแล้วนะครับ แต่ก็ยังไม่ขึ้นหน้าต่อไปเหมือนเดิมครับ
Code (PHP)
4r<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874">
</head>
<body>
<?
include("menu.php");
?>
<form name="frmSearch" method="get" action="<?=$_SERVER['SCRIPT_NAME'];?>">
<table width="865" border="1" align="center">
<tr> </tr>
</table>
<table width="599" border="1" align=center>
<tr>
<th>กรอกชื่อหรือนามสกุล
<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("police_mamber");
$strSQL=" SELECT ps.ps_id,ps.positionname ,ob.id,ob.rank,ob.sex,ob.name,ob.lastname,ob.daypositionnow , ob.manset,ob.othergrad , position.idposition, position.position FROM ob
LEFT JOIN position ON ob.idposition = position.idposition
LEFT JOIN ps ON ob.id = ps.id
where (positionname LIKE '%".$_GET["txtKeyword"]."%' )
and position.position IS NOT NULL ";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
$Num_Rows = mysql_num_rows($objQuery);
mysql_db_query($dbname,"SET NAMES tis620");
mysql_query("SET character_set_database ='tis620'");
mysql_query("SET character_set_results ='tis620'");
mysql_query("SET character_set_client ='tis620'");
mysql_query("SET character_set_connection ='tis620'");
mysql_query("SET character_set_system ='tis620'");
mysql_query("collation_connection = tis620_thai_ci");
mysql_query("collation_database = tis620_thai_ci");
mysql_query("collation_server = tis620_thai_ci");
$Per_Page = 100; // 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 id ASC LIMIT $Page_Start , $Per_Page";
$objQuery = mysql_query($strSQL);
?>
<center><table width="1000" border="1">
<tr>
<center>
<th width="70"> <div align="center" >ลำดับที่</div></th>
<th width="60"> <div align="center" >ยศ</div></th>
<th width="70"> <div align="center" >เพศ</div></th>
<th width="70"> <div align="center" >ชื่อ</div></th>
<th width="180"> <div align="center" >นามสกุล</div></th>
<th width="180"> <div align="center" >เลขตำแหน่ง</div></th>
<th width="150"> <div align="center" >ตำแหน่ง</div></th>
<th width="150"> <div align="center" >วันที่</div></th>
<th width="150"> <div align="center" >คุณวุฒิแต่งตั้ง</div></th>
<th width="150"> <div align="center" >อื่นๆ</div></th>
</>
</tr>
<?
while($objResult = mysql_fetch_array($objQuery))
{
?>
<tr>
<td><?=$objResult["id"];?></div></td>
<td><?=$objResult["rank"];?></td>
<td><?=$objResult["sex"];?></td>
<td><?=$objResult["name"];?></div></td>
<td ><?=$objResult["lastname"];?></td>
<td ><?=$objResult["idposition"];?></td>
<td ><?=$objResult["position"];?></td>
<td ><?=$objResult["sv"];?></td>
<td ><?=$objResult["pbg"];?></td>
<td ><?=$objResult["pgg"];?></td>
<td ><?=$objResult["levelmaster"];?></td>
<td bgcolor="#EEEEEE"><a href='dbpoliceshow.php?id=<?php echo $objResult["id"]; ?>',<?=$objResult["FilesID"];?>>edit</a>
</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>
|
ประวัติการแก้ไข 2013-06-02 13:59:24 2013-06-02 14:03:46 2013-06-02 14:05:10
|
|
|
|
Date :
2013-06-02 13:55:05 |
By :
puldool |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|