|
|
|
อยากจะสร้างปุ่ม page number อะครับ 1-2-3-4-5-6-7-8-9 ประมาณนี้ |
|
|
|
|
|
|
|
แบบนี้ได้หรือเปล่าครับ
PHP MySQL List Record Paging/Pagination
|
|
|
|
|
Date :
2013-04-21 08:48:16 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
num_rows นี้สามาอ่านแถวใน csv ได้ยังไงอะคับ
|
|
|
|
|
Date :
2013-04-21 09:16:53 |
By :
ninenine073 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<html>
<head>
<title>ThaiCreate.Com PHP & MySQL Tutorial</title>
<style type="text/css">
#div1 {
float:left;
width:100px;
height:100px;
border:solid 2px red;
text-align:center;
}
</style>
</head>
<body>
<?
$Num_Rows = 20;
$Per_Page = 2; // 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;
}
$d = 1;
while($d<=20){
echo "<div id='div1'><span><a href='' onclick=\"javascript:if('1'='1'){alert('".$d."');}\">.$d.</a></span></div>";
$d++;
}
?>
</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> ";
}
?>
</body>
</html>
ช่วยดูหน่อยคับต้องการทำหน้าละ 5ช่อง
|
|
|
|
|
Date :
2013-04-21 09:43:50 |
By :
ninenine073 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อยู่ในคอมเมนต์ของโค๊ดแล้วครับ ผมไมา่อยากบอก เดี๋ยวพอมีปัญหาง่ายๆ เดี๋ยวก็มาถาม กลายเป็นว่าไม่ได้ทำเองสักที =_="
|
|
|
|
|
Date :
2013-04-21 12:49:01 |
By :
itpcc |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|