Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,037

HOME > PHP > PHP Forum > ค้นหาและแสดงข้อมูลเป็นหน้าข้อมูลออกไม่หมดครับ ทำตามตัวอย่างแล้วยังไม่ได้ครับ



 

ค้นหาและแสดงข้อมูลเป็นหน้าข้อมูลออกไม่หมดครับ ทำตามตัวอย่างแล้วยังไม่ได้ครับ

 



Topic : 095984



โพสกระทู้ ( 280 )
บทความ ( 0 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์




จากลิ้งค์นี้ครับ

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
Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2013-06-02 10:45:17 By : puldool View : 655 Reply : 3
 

 

No. 1



โพสกระทู้ ( 1,819 )
บทความ ( 20 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์
Facebook

เพราะน้องไม่ได้ส่ง $_GET["txtKeyword"] ไปยังหน้าต่อไปไงล่ะครับ






แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2013-06-02 13:19:16 By : cookiephp
 


 

No. 2



โพสกระทู้ ( 280 )
บทความ ( 0 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์


พี่ครับ ผมแก้ไขเพิ่มแล้วนะครับ แต่ก็ยังไม่ขึ้นหน้าต่อไปเหมือนเดิมครับ

123

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
 

 

No. 3



โพสกระทู้ ( 1,819 )
บทความ ( 20 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์
Facebook

ตรงส่วนของการคำนวณหน้า ผมว่ามันเยิ่นเย้อไปมั้ยครับ

ถ้าอยากหาว่ามีกี่หน้า
เอาจำนวนแถวที่หาได้ ($Num_Rows)
ไปหารกับ จำนวนแถวต่อหน้า ($Per_Page)
แล้วปัดเศษขึ้นด้วย ceil() มันก็จบแล้วครับ

สมมติเลขหน้าปัจจุบันคือ 1
จำนวนแถวต่อหน้าคือ 50
แม้จำนวนแถวที่หาได้คือ 1
1 / 50 = 0.02
ceil(0.02) = 1

$Num_Pages = ceil($Num_Rows / $Per_Page);


แล้วถ้าจะหา $Page_Start เพื่อไปใช้ใน LIMIT

ก็เอาเลขหน้าปัจจุบันมา - 1 แล้วคูณด้วยจำนวนแถวต่อหน้าครับ

สมมติจำนวนแถวต่อหน้า = 50
และสมมติว่าเลขหน้าคือ 1
1 - 1 = 0
0 * 50 = 0

เอาไปใช้ใน LIMIT ก็จะเป็น LIMIT 0, 50

$Page_Start = ($Page - 1) * $Per_Page;

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2013-06-02 14:28:34 By : cookiephp
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : ค้นหาและแสดงข้อมูลเป็นหน้าข้อมูลออกไม่หมดครับ ทำตามตัวอย่างแล้วยังไม่ได้ครับ
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ FTP| ใส่แถวของตาราง ใส่คอลัมน์ตาราง| ตัวยก ตัวห้อย ตัวพิมพ์ดีด| ใส่โค้ด ใส่การอ้างถึงคำพูด| ใส่ลีสต์
smiley for :lol: smiley for :ken: smiley for :D smiley for :) smiley for ;) smiley for :eek: smiley for :geek: smiley for :roll: smiley for :erm: smiley for :cool: smiley for :blank: smiley for :idea: smiley for :ehh: smiley for :aargh: smiley for :evil:
Insert PHP Code
Insert ASP Code
Insert VB.NET Code Insert C#.NET Code Insert JavaScript Code Insert C#.NET Code
Insert Java Code
Insert Android Code
Insert Objective-C Code
Insert XML Code
Insert SQL Code
Insert Code
เพื่อความเรียบร้อยของข้อความ ควรจัดรูปแบบให้พอดีกับขนาดของหน้าจอ เพื่อง่ายต่อการอ่านและสบายตา และตรวจสอบภาษาไทยให้ถูกต้อง

อัพโหลดแทรกรูปภาพ

Notice

เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ
อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง

   
  เพื่อความปลอดภัยและการตรวจสอบ กระทู้ที่แทรกไฟล์อัพโหลดไฟล์จากที่อื่น อาจจะถูกลบทิ้ง
 
โดย
อีเมล์
บวกค่าให้ถูก
<= ตัวเลขฮินดูอารบิก เช่น 123 (หรือล็อกอินเข้าระบบสมาชิกเพื่อไม่ต้องกรอก)







Exchange: นำเข้าสินค้าจากจีน, Taobao, เฟอร์นิเจอร์, ของพรีเมี่ยม, ร่ม, ปากกา, power bank, แฟลชไดร์ฟ, กระบอกน้ำ

Load balance : Server 00
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่