|
|
|
ขอโค้ดแบ่งหน้าเหมือน google หน่อยครับ ขอโค้ดแบ่งหน้าเหมือน google หน่อยครับ |
|
|
|
|
|
|
|
if(!isset($start)){$start = 0;}
if(!isset($page)){$page=1;}
$limit = 5; // กำหนดจำนวนรายการที่แสดงต่อ1หน้า
$maxpage =3; // กำหนดแสดงจำนวนตัวเลขต่อ 1 หน้า
$result_total = select_table("*","product ","","num"); // product คือ ชื่อตาราง
$result_page = select_table("*","product"," LIMIT $start,$limit","num"); // product คือ ชื่อตาราง
// ตรงนี้แสดงข้อมูล
while($arr = mysql_fetch_array($result_page[0]))
{
echo $arr[1]."<br>";
}
echo show_page($result_total[1],$maxpage,"");
function select_table($select,$table,$proviso,$s) // select ตาราง
{
$sql = "SELECT $select FROM $table $proviso";
$query = mysql_query($sql);
if($s=="num"){$result = mysql_num_rows($query);}
else if($s=="fetch"){$result = mysql_fetch_array($query);}else{ $result = false;}
if($query){$array = array($query,$result); return $array;}
else{ return false;}
}
function show_page($result_total,$max_page,$where) // แบ่งหน้า
{
global $limit;
global $j;
global $page;
$sum_page = ceil($result_total/$limit);
$next = ceil($sum_page/$max_page);
$mod = $sum_page%$max_page;
$k=1;
for($n=0;$n<=$sum_page;$n=$n+$max_page)
{
$arr_page[$k]=$n;
$k++;
}
if($mod!=0)
{
$arr_page[$k]=$sum_page;
}
if(!isset($j)){$j=1;}
for($i=$arr_page[$j];$i<=($arr_page[$j+1]-1);$i++)
{
$p=$i+1;
if($j>1 && $i==$arr_page[$j])
{
echo "<a href='?".$where."start=".$limit*($p-2)."&page=".($p-1)."&j=".($j-1)."'><b><<</b></a> " ;
}
if($p==$page)
{
echo "<font color='#000000'>$p</font>";
}
else
{
echo "<a href='?".$where."start=".$limit*($p-1)."&page=$p&j=$j'><font color='#FF0000'><b>$p</b></font></a>" ;
}
if($i < $arr_page[$j+1]-1){echo" | ";}
if($j<$next && $i ==($arr_page[$j+1]-1))
{
echo " <a href='?".$where."start=".($limit*$p)."&page=".($p+1)."&j=".($j+1)."'><b>>></b></a>" ;
}
}
}
|
|
|
|
|
Date :
15 พ.ย. 2550 14:53:23 |
By :
heng |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|