php กับ mysql ขอถามเรื่อง การแบ่งหน้าแบบมี ... ถ้ามีจำนวนหน้าเยอะ ๆ ครับ
ถ้าจะเอาแบบนี้ก็ต้องไปเอาจากเว็บมาสเตอร์เองเลยละครับ pm ไปหาเขาอ่าครับ
Date :
2010-08-20 22:03:00
By :
Dragons_first
Pager
แบบนี้แทนได้ป่ะ
Date :
2010-08-20 23:14:09
By :
DS_Ohm
คล้ายๆ ก็ได้ครับ เน้น ที่เป็น ... ตอนที่มีจำนวนหน้าเยอะๆ
Date :
2010-08-20 23:22:22
By :
iieszz
<?php
#ob_start();
session_start();
// เช็คว่า User ได้ผ่านการ Login มาหรือไม่ (ถ้าไม่ได้ Login มาให้ส่งต่อไปหน้าไหนก็ใส่ URL ลงไปครับ ตรงตำแหน่ง login.php)
if (!isset($_SESSION["phpAuth_usr"])) {
header("Location: index.php");
exit;
}
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=tis-620">
<title>:: Fabrinet EDFA History Debug ::@Nirun Sutthisarn::006615</title>
<style>
BODY {
FONT-FAMILY: Arial, Helvetica, sans-serif
}
</style>
<script Language="Javascript">
<!--
function Conf(object) {
if (confirm("โปรดยืนยันการลบ ?") == true) {
return true;
}
return false;
}
//-->
</script>
</head>
<body background="image/bg.jpg">
<p align="center">
<img src="image/fabrinet.jpg" width="200" height="50"><br>
<marquee behavior="alternate"><font color="#0033FF" size="3" face="MS Sans Serif, Tahoma, sans-serif"><strong>! <u>Fabrinet EDFA History Debug</u> ! </strong></font></marquee>
<font size="3"><<
<a href="index.php">หน้าหลัก</a> >>
<font size="3"><<
<a href="showdata.php">เรียกดูข้อมูลในฐานข้อมูล</a> >>
<< <a href="adddata.php">เพิ่มข้อมูลลงฐานข้อมูล</a> >>
<<<a a href="export to excel.php">Export Data</a>>>
<<<a a href="SearchData.php">Search Data</a>>>
<<<a a href="logout.php">ออกจากระบบ</a>>></font></p>
<?
$objConnect = mysql_connect("localhost","root","123456") or die("Error Connect to Database");
$objDB = mysql_select_db("History_debug");
$strSQL = "SELECT * FROM member ";
//$strSQL =("select * from member order by id");
//$result = mysql_query("select * from member order by id");
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
$Num_Rows = mysql_num_rows($objQuery);
$Per_Page = 32; // 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);
?>
<p align="center"><u><b><font size="5" color="#800000">Fabrinet EDFA History Debug</font></b></u></p>
<center>
<table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" id="AutoNumber1">
<tr>
<td width="4%" bgcolor="#CCFFFF" align="center">
<b><font color="#000080">ID</font></b></td>
<td width="8%" bgcolor="#CCFFFF" align="center">
<p align="center"><b><font color="#000080">ModuleSN</font></b></td>
<td width="6%" bgcolor="#CCFFFF" align="center"><b>
<font color="#000080">Fail</font></b></td>
<td width="8%" bgcolor="#CCFFFF" align="center"><b>
<font color="#000080">Date Fail</font></b></td>
<td width="20%" bgcolor="#CCFFFF" align="center"><b>
<font color="#000080">Reason for holding</font></b></td>
<td width="32%" bgcolor="#CCFFFF" align="center"><b>
<font color="#000080">TechRec</font></b></td>
<td width="10%" bgcolor="#CCFFFF" align="center"><b>
<font color="#000080">NextStep</font></b></td>
<td width="8%" bgcolor="#CCFFFF" align="center"><b>
<font color="#000080">TechName</font></b></td>
<td width="15%" bgcolor="#CCFFFF" align="center"><b>
<font color="#000080">TechEN</font></b></td>
<td width="15%" bgcolor="#CCFFFF" align="center"><b>
<font color="#000080">DebugDate</font></b></td>
<td width="15%" bgcolor="#CCFFFF" align="center"><b>
<font color="#000080">DebugTime</font></b></td>
<td width="8%" bgcolor="#CCFFFF" align="center"><b>
<font color="#000080">Edit</font></b></td>
<td width="5%" bgcolor="#CCFFFF" align="center"><b>
<font color="#000080">Delete</font></b></td>
</tr>
<?
while($objResult = mysql_fetch_array($objQuery))
{
?>
<tr>
<td width="4%" bgcolor="#FFCCFF" align="center"><font size="2"><?php echo $objResult["id"] ; ?></font></td>
<td width="8%" bgcolor="#66CCFF" align="center"><font size="2"><?php echo $objResult["SN"] ; ?></font></td>
<td width="6%" bgcolor="#99FF99" align="center"><font size="2"><?php echo $objResult["Fail_at"] ; ?></font></td>
<td width="8%" bgcolor="#FFCC99" align="center"><font size="2"><?php echo $objResult["date"]."/".$objResult["month"]."/".$objResult["year"]; ?></font></td>
<td width="20%" bgcolor="#CCFF99" align="center"><font size="2"><?php echo $objResult["ResonFail"] ; ?></font></td>
<td width="32%" bgcolor="#99FF00" align="center"><font size="2"><?php echo $objResult["TechRec"] ; ?></font></td>
<td width="10%" bgcolor="#00FF66" align="center"><font size="2"><?php echo $objResult["NextStep"] ; ?></font></td>
<td width="8%" bgcolor="#FFCC00" align="center"><font size="2"><?php echo $objResult["TechName"] ; ?></font></td>
<td width="8%" bgcolor="#CCFF00" align="center"><font size="2"><?php echo $objResult["TechEn"] ; ?></font></td>
<td width="8%" bgcolor="#FFFFCC" align="center"><font size="2"><?php echo $objResult["DebugDate"] ; ?></font></td>
<td width="8%" bgcolor="#CCCCCC" align="center"><font size="2"><?php echo $objResult["DebugTime"] ; ?></font></td>
<td width="5%" bgcolor="#33FF00" align="center"><center><a href="editdata.php?id=<?=$objResult["id"];?>"><img src="edit.gif" width="15" height="15" border="0"></a></center></td>
<td width="5%" bgcolor="#CCCCFF" align="center"><center><a href="deletedata.php?id=<?=$objResult["id"];?>" OnClick="return Conf(this)"><img src="delete.jpg" width="15" height="15" border="0"></a></center></td>
</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>
ลองดูครับผมก็ใช้อยู่ ไม่รู้จะใช่อย่างที่ต้องการหรือเปล่า
Date :
2010-08-21 21:10:40
By :
nirunsu
ขอบคุณ สมาชิก ทุกๆท่าน ที่ช่วยแนะแนวทางครับ
ถ้าไปต่อไม่ถูก จะมาถามต่อน่ะครับ
Date :
2010-08-21 23:26:16
By :
iieszz
อยากได้แบบนี้มั้งค่ะ แต่เป็น asp.net VB
พอจะมีไหมค่ะ
Date :
2011-04-04 17:21:00
By :
cabbage
ค่ะใช้ gridview ในการแสดงข้อมูล
แต่ข้อมูลมันก็จะยาวๆ ต่อกันลงมาเรื่อยอ่ะค่ะ
Date :
2011-04-05 09:02:20
By :
cabbage
ได้แล้วค่ะ
ขอบคุณ mr.win (พี่วิน)
นะคะ
Date :
2011-04-05 14:33:59
By :
cabbage
Load balance : Server 05