|
|
|
อยากทราบเรื่องการแบ่งหน้าครับ ติดปัญหา กดหน้าที่2แล้วมันเด้งกลับไปหน้าdefault |
|
|
|
|
|
|
|
ปัญหาคือ กดหน้าที่2แล้วมันเด้งกลับไปหน้าdefault มันไม่เด้งไปหน้าที่แบ่งไว้ครับ
ผมใช้การแบ่งโครงสร้างหน้า Webpage แบบตัวอย่างนี้
https://www.thaicreate.com/community/php-web-site-structure.html
อันนี้codeหน้าหลักของผม
Code (PHP)
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>ระบบขอใช้บริการ IT SUPPORT ONLINE THANES DEVELOPMENT</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<META content="text/html; charset=utf-8" http-equiv=Content-Type>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874">
</head>
<body>
<table width="100%" border="1">
<tr>
<td colspan="2"><div align="center">
<!-- Header -->
<? include("head.php"); ?>
</div></td>
</tr>
<tr>
<td width="18%">
<?
echo "<h6>การตั้งค่าของผู้ดูแลระบบ</h6>";
include("menu.php");
?></td>
<td width="82%">
<!-- Container -->
<?
switch ($_GET["page"]) {
case "home":
echo "main";
include("main.php");
break;
case "status":
include("status.php");
break;
case "product":
echo "Home -> Product";
include("page_product.php");
break;
case "aboutus":
echo "Home -> About Us";
include("page_aboutus.php");
break;
case "data-list":
include("data-list.php");
break;
default:
include("main.php");
}
?>
</td>
</tr>
<tr>
</tr>
</table>
</body>
</html>
แล้วใช้การแบ่งหน้าแบบตัวอย่างนี้
https://www.thaicreate.com/community/php-mysql-pagination.html
ส่วนอันนี้codeหน้าที่จะแบ่งหน้า
Code (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 > 10)
{
$this->return = ($this->current_page != 1 And $this->items_total >= 10) ? "<a class=\"paginate\" href=\"".$this->url_next.$this->$prev_page."\">« Previous</a> ":"<span class=\"inactive\" href=\"#\">« 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 »</a>\n":"<span class=\"inactive\" href=\"#\">» 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;
}
}
?>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<META content="text/html; charset=utf-8" http-equiv=Content-Type>
<link rel="stylesheet" type="text/css" href="css/font.css" />
<script language="javascript">
function js_popup(theURL,width,height) { //v2.0
leftpos = (screen.availWidth - width) / 2;
toppos = (screen.availHeight - height) / 2;
window.open(theURL, "viewdetails","width=" + width + ",height=" + height + ",left=" + leftpos + ",top=" + toppos);
}
</script>
<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>
<?
$objConnect = mysql_connect("localhost","root","1234") or die("Error Connect to Database");
$objDB = mysql_select_db("request");
mysql_query("SET NAMES 'tis620'");
mysql_query("SET NAMES UTF8");
$strSQL = "SELECT * FROM job ";
$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 job_id ASC LIMIT $Page_Start , $Per_Page";
$objQuery = mysql_query($strSQL);
?>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><div align="center"><font size="3"><span class="style11">แสดงข้อมูลการขอใช้บริการ IT Support Online </span></font></div>
</td>
</tr>
</table>
<br>
<table width="100%" border="1" cellpadding="0">
<tr>
<th width="58"bgcolor="#88D5E7"> <div align="center"><FONT SIZE="1.5" >ลำดับ </FONT></div></th>
<th width="70"bgcolor="#88D5E7"> <div align="center"><FONT SIZE="1.5" >เลขที่ </FONT></div></th>
<th width="183"bgcolor="#88D5E7"> <div align="center"><FONT SIZE="1.5" >ผู้แจ้ง </FONT></div></th>
<th width="72"bgcolor="#88D5E7"> <div align="center"><FONT SIZE="1" >รหัสพนักงาน </FONT></div></th>
<th width="111"bgcolor="#88D5E7"> <div align="center"><FONT SIZE="1.5" >แผนก </FONT></div></th>
<th width="67"bgcolor="#88D5E7"> <div align="center"><FONT SIZE="1.5" >เบอร์ภายใน </FONT></div></th>
<th width="112"bgcolor="#88D5E7"> <div align="center"><FONT SIZE="1.5" >วันที่แจ้ง </FONT></div></th>
<th width="252"bgcolor="#88D5E7"> <div align="center"><FONT SIZE="1.5" >ความต้องการ </FONT></div></th>
<th width="55"bgcolor="#88D5E7"> <div align="center"><FONT SIZE="1.5" >รายละเอียด </FONT></div></th>
<th width="57"bgcolor="#88D5E7"> <div align="center"><FONT SIZE="1.5" >สถานะ </FONT></div></th>
</tr>
<?
while($objResult = mysql_fetch_array($objQuery))
{
$job_date = $objResult["job_date"];
$d = substr($job_date,8,2); //วันที่
$m= substr($job_date,5,2); //เดือน
$y = substr($job_date,2,2); //ปี
$job_id = $objResult["job_id"];
$code = sprintf ("IT$y/$m/%03d",$job_id);
$job_detail = $objResult["job_detail"];
?>
<tr>
<td width="58"><div align="center"><FONT SIZE="2" ><?=$objResult["job_id"];?></FONT></div></td>
<td width="70"><div align="center"><FONT SIZE="2" ><?=$code;?></FONT></div></td>
<td width="183"><div align="center"><FONT SIZE="2" ><?=$objResult["job_fnameEng"];?> <?=$objResult["job_lnameEng"];?></FONT></div></td>
<td width="72"><div align="center"><FONT SIZE="2" ><?=$objResult["per_id"];?></FONT></div></td>
<td width="111">
<?
$dep_id = $objResult["job_dep_id"];
?>
<?
$strSQL3 ="SELECT*FROM dep where dep_id='$dep_id' ";
$objQuery3 = mysql_query($strSQL3);
$Num_Rows3 = mysql_num_rows($objQuery3);
while($objResult3 = mysql_fetch_array($objQuery3))
{
?>
<div align="center"><FONT SIZE="2" ><?=$objResult3["dep_name"];?></FONT></div></td>
<?
}
?>
<td width="67"><div align="center"><FONT SIZE="2" ><?=$objResult["job_tel"];?></FONT></div></td>
<td width="112"><div align="center"><FONT SIZE="2" ><?=$objResult["job_date"];?>[<?=$objResult["job_time"];?>]</FONT></div></td>
<td width="252">
<?
$type_id = $objResult["job_type_id"];
?>
<?
$strSQL3 ="SELECT*FROM type where type_id='$type_id' ";
$objQuery3 = mysql_query($strSQL3);
$Num_Rows3 = mysql_num_rows($objQuery3);
while($objResult3 = mysql_fetch_array($objQuery3))
{
?>
<div align="center"><FONT SIZE="2" ><?=$objResult3["type_name"];?></FONT></div></td>
<?
}
?>
<td width="55"><div align="center"><a href="#" onClick="js_popup('view.php?id_edit=$job_id',700,580); return false;" title="Code PHP Popup"><img src="images/detail.jpg" /></a></div></td>
<td width="57">
<?
$status_id = $objResult["job_status"];
?>
<?
$strSQL3 ="SELECT*FROM status where status_id='$status_id' ";
$objQuery3 = mysql_query($strSQL3);
$Num_Rows3 = mysql_num_rows($objQuery3);
while($objResult3 = mysql_fetch_array($objQuery3))
{
?>
<div align="center"><img src="../myfile/<?=$objResult3["status_pic"];?>"/></div></td>
<?
}
?>
</tr>
<?
}
?>
</table>
<br>
<br>
Total <?= $Num_Rows;?> Record
<?
$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["PHP_SELF"]."?QueryString=value&Page=";
$pages->paginate();
echo $pages->display_pages()
?>
<?
mysql_close($objConnect);
?>
</div></td>
</tr>
</table>
ขอบคุณครับ
Tag : PHP, HTML/CSS, JavaScript
|
|
|
|
|
|
Date :
2013-07-02 16:23:43 |
By :
ruud |
View :
776 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ยังแก้ไม่ได้เลยอ่ะครับ รบกวนด้วยครับ
|
|
|
|
|
Date :
2013-07-03 09:09:29 |
By :
ruud |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|