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 > รบกวนผู้รู้ช่วยดูโค้ดให้หน่อยค่ะ เรื่องการค้นหาข้อมูล Paging แล้วเมื่อกดหน้าที่ 2 แสดงข้อมูลที่ไม่ได้ค้นหามาโชว์



 

รบกวนผู้รู้ช่วยดูโค้ดให้หน่อยค่ะ เรื่องการค้นหาข้อมูล Paging แล้วเมื่อกดหน้าที่ 2 แสดงข้อมูลที่ไม่ได้ค้นหามาโชว์

 



Topic : 119398



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



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




ทำตามจากกระทู้นี้ค่ะ https://www.thaicreate.com/community/php-mysql-pagination.html
มีปัญหาแบบกระทู้นี้ https://www.thaicreate.com/php/forum/080152.html
ลองทำตามแล้วก็ยังไม่ได้อ่ะค่ะ
รบกวนด้วยค่ะ

Code (PHP)
<?php
include("template_admin.php")
?>
<?php
class Paginator{
	var $items_per_page;
	var $items_total;
	var $current_page;
	var $num_pages;
	var $mid_range;
	var $low;
	var $high;
	var $limit;
	var $return;
	var $default_ipp;
	var $querystring;
	var $url_next;

	function Paginator()
	{
		$this->current_page = 1;
		$this->mid_range = 7;
		$this->items_per_page = $this->default_ipp;
		$this->url_next = $this->url_next;
	}
	function paginate()
	{

		if(!is_numeric($this->items_per_page) OR $this->items_per_page <= 0) $this->items_per_page = $this->default_ipp;
		$this->num_pages = ceil($this->items_total/$this->items_per_page);

		if($this->current_page < 1 Or !is_numeric($this->current_page)) $this->current_page = 1;
		if($this->current_page > $this->num_pages) $this->current_page = $this->num_pages;
		$prev_page = $this->current_page-1;
		$next_page = $this->current_page+1;


		if($this->num_pages > 1) //ตั้งว่าให้ขึ้น pre กับ next ตอนจำนวนกี่หน้า
		{
			$this->return = ($this->current_page != 1 And $this->items_total >= 10) ? "<a class=\"paginate\" href=\"".$this->url_next.$this->$prev_page."\">&laquo; Previous</a> ":"<span class=\"inactive\" href=\"#\">&laquo; Previous</span> ";

			$this->start_range = $this->current_page - floor($this->mid_range/2);
			$this->end_range = $this->current_page + floor($this->mid_range/2);

			if($this->start_range <= 0)
			{
				$this->end_range += abs($this->start_range)+1;
				$this->start_range = 1;
			}
			if($this->end_range > $this->num_pages)
			{
				$this->start_range -= $this->end_range-$this->num_pages;
				$this->end_range = $this->num_pages;
			}
			$this->range = range($this->start_range,$this->end_range);

			for($i=1;$i<=$this->num_pages;$i++)
			{
				if($this->range[0] > 2 And $i == $this->range[0]) $this->return .= "  ";
				if($i==1 Or $i==$this->num_pages Or in_array($i,$this->range))
				{
					$this->return .= ($i == $this->current_page And $_GET['Page'] != 'All') ? "<a title=\"Go to page $i of $this->num_pages\" class=\"current\" href=\"#\">$i</a> ":"<a class=\"paginate\" title=\"Go to page $i of $this->num_pages\" href=\"".$this->url_next.$i."\">$i</a> ";
				}
				if($this->range[$this->mid_range-1] < $this->num_pages-1 And $i == $this->range[$this->mid_range-1]) $this->return .= "  ";
			}
			$this->return .= (($this->current_page != $this->num_pages And $this->items_total >= 10) And ($_GET['Page'] != 'All')) ? "<a class=\"paginate\" href=\"".$this->url_next.$next_page."\">Next &raquo;</a>\n":"<span class=\"inactive\" href=\"#\">&raquo; Next</span>\n";
		}
		else
		{
			for($i=1;$i<=$this->num_pages;$i++)
			{
				$this->return .= ($i == $this->current_page) ? "<a class=\"current\" href=\"#\">$i</a> ":"<a class=\"paginate\" href=\"".$this->url_next.$i."\">$i</a> ";
			}
		}
		$this->low = ($this->current_page-1) * $this->items_per_page;
		$this->high = ($_GET['ipp'] == 'All') ? $this->items_total:($this->current_page * $this->items_per_page)-1;
		$this->limit = ($_GET['ipp'] == 'All') ? "":" LIMIT $this->low,$this->items_per_page";
	}

	function display_pages()
	{
		return $this->return;
	}
}
?>
<head>

        <link rel="stylesheet" href="css/datepicker.css">
		 <script src="js/bootstrap-datepicker-thai.js"></script>
		
</head>
<style type="text/css"> 
<!--
	.paginate {
	font-family: Arial, Helvetica, sans-serif;
	font-size: .7em;
	}
	a.paginate {
	border: 1px solid #000080;
	padding: 2px 6px 2px 6px;
	text-decoration: none;
	color: #000080;
	}
	h2 {
		font-size: 12pt;
		color: #003366;
		}
		
		 h2 {
		line-height: 1.2em;
		letter-spacing:-1px;
		margin: 0;
		padding: 0;
		text-align: left;
		}
	a.paginate:hover {
	background-color: #000080;
	color: #FFF;
	text-decoration: underline;
	}
	a.current {
	border: 1px solid #000080;
	font: bold .7em Arial,Helvetica,sans-serif;
	padding: 2px 6px 2px 6px;
	cursor: default;
	background:#000080;
	color: #FFF;
	text-decoration: none;
	}
	span.inactive {
	border: 1px solid #999;
	font-family: Arial, Helvetica, sans-serif;
	font-size: .7em;
	padding: 2px 6px 2px 6px;
	color: #999;
	cursor: default;
	}
-->
</style>
</br>
</br>
</br>

<div class="container">



<div class="panel panel-primary"style="background-color:#0e82d6;">
 <div><center> <class="panel-body" style="color:white"><h3><span class="glyphicon glyphicon-time"></span> รายการที่รอการตรวจสอบขอยืมอุปกรณ์คอมพิวเตอร์ </h3></center></div>
</div>
  
</div>





<form name="frmSearch"  method="get" action="<?php  $_SERVER['SCRIPT_NAME'];?>">
  
    <div align="center">	
	<div class="panel " style="max-width:400px">
      <h4>ค้นหาข้อมูลด้วย วันที่ยืมอุปกรณ์คอมพิวเตอร์</h4>

	 
		 
	    <div class="form-group">
  <div class="input-group ">
  <span class="input-group-addon" id="basic-addon1"> <span class="glyphicon glyphicon-calendar"></span></span>
  <input type="text" class="form-control"  name="txtKeyword" id="txtKeyword" >
  </div>
  </div>
  
 <script>
$(function () {
  $("#txtKeyword").datepicker({ format : 'yyyy-mm-dd' })
});

 </script>
 
	  
	  <button class="btn btn-primary"  type="submit" name="submit" id="submit" value="submit"  >
	  <span class="glyphicon glyphicon-search"></span>
			
			 ค้นหา
			</button>
			
			<button class="btn btn-success"  type="cancel"  value="cancel"  onclick="window.location.href='borrow_list.php?val='"> <!--สีปุ่ม login-->
			
			  <span class="glyphicon glyphicon-menu-left"></span><!-- ใส่ icon หน้าข้อความ login -->
			<!--  <h3><i class="glyphicon glyphicon-home"></i></h3>  -->
			 กลับ
			</button>
   </div>
   </div>
   
</form>
</br>
<?php
    
    error_reporting( error_reporting() & ~E_NOTICE );
    $name = $_REQUEST['txtKeyword'];
    echo $txtKeyword;
     
?>
	
	
	</div>
	
<!--สิ้นสุดการค้นหา-->	




</br>
 <div class="container-fluid">
 
 
           <table class="table table-striped" style="background-color:#EEEED1">
    <thead>
      <tr>
	  
 <th><center>ลำดับที่</center></th>
        <th><center>รหัสการยืมอุปกรณ์คอมพิวเตอร์</center></th>
        <th><center>รหัสพนักงาน</center></th>
<th><center>ชื่อพนักงาน</center></th>
<th><center>นามสกุลพนักงาน</center></th>
        <th><center>ประเภทอุปกรณ์</center></th>
		<th><center>วันที่ยืม</center></th>
        <th><center>วันที่คืน</center></th>
        <th><center>จำนวนที่ยืม</center></th>
		<th><center>วัตถุประสงค์</center></th>
		   <th><center>สถานะการยืม</center></th>
		
		
 </tr>
     </thead>

	<tbody>
	
<?php
	$objConnect = mysql_connect("localhost","root","usbw") or die("Error Connect to Database");
	mysql_query("SET NAMES UTF8",$objConnect); // set กำหนดมาตราฐาน
	mysql_query("SET character_set_results=utf8");//ตั้งค่าการดึงข้อมูลออกมาให้เป็น utf8
	mysql_query("SET character_set_client=utf8");//ตั้งค่าการส่งข้อมุลลงฐานข้อมูลออกมาให้เป็น utf8
	mysql_query("SET character_set_connection=utf8");//ตั้งค่าการติดต่อฐานข้อมูลให้เป็น utf8

	$objDB = mysql_select_db("database_thaifood");
	
	if($_GET['txtKeyword'] != "")
	{
	
	// Search By Name or Email
	$strSQL = "select a.borrow_id , a.user_id , b.user_name , b.user_lastname , a.type_id,c.type_name  , a.date_borrow , a.date_return , a.total_borrow ,a.des_borrow, a.status_borrow from db_borrow_return a
					left join db_user b
					on a.user_id=b.user_id
					left join db_type_device c
					on a.type_id=c.type_id
					
	
					WHERE (a.date_borrow LIKE '%".$_GET["txtKeyword"]."%' ) AND  status_borrow='รอการอนุมัติ'   ";
	} else {
		
		$strSQL=" select a.borrow_id , a.user_id , b.user_name , b.user_lastname, a.type_id,c.type_name, a.date_borrow , a.date_return , a.total_borrow ,a.des_borrow, a.status_borrow from db_borrow_return a
						left join db_user b
						on a.user_id=b.user_id
							left join db_type_device c
					on a.type_id=c.type_id
						 WHERE status_borrow='รอการอนุมัติ' ";
	}
	$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
	$Num_Rows = mysql_num_rows($objQuery);
	
	$Per_Page = 10;   // 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  borrow_id DESC LIMIT $Page_Start , $Per_Page";
$objQuery  = mysql_query($strSQL);
	if(mysql_num_rows($objQuery)<1) {   ?>

<tr><td colspan="14"> <center><h3><span class="glyphicon glyphicon-alert"></span>  ไม่พบรายการที่รอการตรวจสอบ</h3></center></tr></td>	
	<?php
		
	} else {
    $i = 1;
	if($Page > 1)
{
	$i = ($Per_Page * ($Page-1)) + 1; 
}

	while($objResult = mysql_fetch_array($objQuery))
	{
?>	

    <tr> 
		 <td><center><?php echo $i;?></center></td>
	 <td><center><?php echo $objResult["borrow_id"];?></center></td>
	<td><center><?php echo $objResult["user_id"];?></center></td>
	<td><center><?php echo $objResult["user_name"];?></center></td>
	<td><center><?php echo $objResult["user_lastname"];?></center></td>
	<td><center><?php echo $objResult["type_name"];?> </center></td>
    <td><center><?php echo date_thai($objResult["date_borrow"]);?></center></td>
    <td><center><?php echo date_thai($objResult["date_return"]);?></center></td>
	<td><center><?php echo $objResult["total_borrow"];?></center></td>
	<td><center><?php echo $objResult["des_borrow"];?></center></td>
	<td><center> <?php echo $objResult["status_borrow"];?></center></td>
	

	<td>
	<center>
<button class="btn btn-primary">
<span class="glyphicon glyphicon-wrench"></span>
<a  style="color:white" href="edit_borrow_form.php?borrow_id=<?php echo $objResult["borrow_id"];?>">ดำเนินการ</a>
	
	</button>
	</button>
	</center>
	</td>
	
	<td> 
	<center>
	<button class="btn btn-danger">
	<align="center">
	<span class="glyphicon glyphicon-trash"></span>
	<a style="color:white" href="JavaScript:if(confirm('คุณต้องการลบข้อมูลนี้ใช่หรือไม่ ?')==true){window.location='delete_borrow_list.php?borrow_id=<?php echo $objResult["borrow_id"];?>';}">ลบข้อมูล</a>
	</center>
	</button></td>
	</tr>
    <?PHP  $i++; } }   ?>
    
    </tbody>
</table>

Total <?php echo $Num_Rows;?> Record : <?php echo $Num_Pages;?> Page

<center>

<ul class="pagination pagination-sm ">
<li>
  
<?php

$pages = new Paginator;
$pages->items_total = $Num_Rows;
$pages->mid_range = 10;
$pages->current_page = $Page;
$pages->default_ipp = $Per_Page;
$pages->url_next = $_SERVER["SCRIPT_NAME"]."?QueryString=value&Page=";

$pages->paginate();

echo $pages->display_pages()
?>	

</li>
</ul>	
</center>
<?php
  
  mysql_close($objConnect);
  ?>

</div>

	
		

<div align="center">	   

<button class="btn btn-success"  type="cancel"  value="cancel"  onclick="window.location.href='home_admin.php?val='"> 
			
			
			  <span class="glyphicon glyphicon-menu-left"></span>
			
			 กลับหน้าแรก
			</button>
			</div>





Tag : PHP









ประวัติการแก้ไข
2015-10-15 09:45:20
Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2015-10-15 09:44:36 By : programmua View : 767 Reply : 6
 

 

No. 1



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



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


เช็คค่านี้ใหม่ครับ
Code
$pages->url_next = $_SERVER["SCRIPT_NAME"]."?QueryString=value&Page=";


มันน่าจะเป็นแบบนี้ไม๊
Code
$pages->url_next = $_SERVER["SCRIPT_NAME"]."?txtKeyword=$_GET[txtKeyword]&Page=";


จะเป็นการยากไม๊ถ้าผมแนะนำตัวนี้ -->การแสดงแบบแบ่งหน้าโดยใช้ kgPager Class (PHP & MySQL)
ผมคิดว่ามันน่าจะง่ายกว่าแบบที่คุณใช้ครับ








ประวัติการแก้ไข
2015-10-15 10:12:28
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2015-10-15 10:09:05 By : arm8957
 


 

No. 2



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



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


อ่อค่ะ ตอนนี้แสดงหน้าแบบธรรใดาได้แล้ว ติดแต่ตอนค้นหาอ่ะค่ะ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2015-10-15 10:30:28 By : programmua
 

 

No. 3



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



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


ตอบความคิดเห็นที่ : 2 เขียนโดย : programmua เมื่อวันที่ 2015-10-15 10:30:28
รายละเอียดของการตอบ ::
แล้วค้นหาได้รึยัง?

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2015-10-15 10:37:02 By : arm8957
 


 

No. 4



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



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


ตอบความคิดเห็นที่ : 3 เขียนโดย : arm8957 เมื่อวันที่ 2015-10-15 10:37:02
รายละเอียดของการตอบ ::
ยังไม่ได้อ่ะค่ะ พอค้นหาแล้วแสดงออกมา เมื่อกด ไปหน้า 2 ก็แสดงหน้าตอนยังไม่ค้นหาออกมาให้อ่าค่ะ

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2015-10-15 10:46:37 By : programmua
 


 

No. 5



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



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


echo $strSQL; ออกมาดูครับ แล้วดูว่าค่าไหนหายไป ว่าแต่คุณแก้ตามที่ผมแนะนำไปรึยัง?

Code (PHP)
$pages->url_next = $_SERVER["SCRIPT_NAME"]."?txtKeyword=$_GET[txtKeyword]&Page=";

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2015-10-15 10:55:02 By : arm8957
 


 

No. 6



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



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


ตอบความคิดเห็นที่ : 5 เขียนโดย : arm8957 เมื่อวันที่ 2015-10-15 10:55:02
รายละเอียดของการตอบ ::
ทำได้แล้วค่า ตามโค้ดท่านเลย ขอบคุณมากๆเลยค่า

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2015-10-15 11:46:52 By : programmua
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : รบกวนผู้รู้ช่วยดูโค้ดให้หน่อยค่ะ เรื่องการค้นหาข้อมูล Paging แล้วเมื่อกดหน้าที่ 2 แสดงข้อมูลที่ไม่ได้ค้นหามาโชว์
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ 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 02
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 อัตราราคา คลิกที่นี่