<?php
header("content-type:text/html;charset=utf-8");
// 連線資料庫
$con = mysql_connect("資料庫位址","資料庫賬號","資料庫密碼");
if (!$con)
mysql_select_db("資料庫名", $con);
// 每頁顯示條數
$pageline = 5;
// 計算總記錄數
$zongpage = mysql_query("select count(*) from 表名");
// 計算總頁數
$sum = mysql_fetch_row($zongpage);
$pagecount = ceil($sum[0]/$pageline);
// 定義頁碼變數
@$tmp = $_get['page'];
// 計算分頁起始值
$num = ($tmp - 1) * $pageline;
// 查詢語句
$result = mysql_query("select 字段 from 表名 order by id desc limit " . $num . ",$pageline");
// 遍歷輸出
while($row = mysql_fetch_array($result))
//分頁按鈕
$lastpage = $tmp-1;
$nextpage = $tmp+1;
//防止翻過界
if (@$tmp > $pagecount)
//如果頁碼大於總頁數,則顯示沒有了
if(@$tmp <= 1)else if(@$tmp > 1 && @$tmp < $pagecount)else if(@$tmp = $pagecount)
// 關閉資料庫連線
mysql_close($con);
?>
php原生資料庫分頁
header content type text html charset utf 8 連線資料庫 con mysql connect 資料庫位址 資料庫賬號 資料庫密碼 if con mysql select db 資料庫名 con 每頁顯示條數 pageline 5 計算總記錄數 zongpag...
php原生資料庫分頁
header content type text html charset utf 8 連線資料庫 con mysql connect 資料庫位址 資料庫賬號 資料庫密碼 if con mysql select db 資料庫名 con 每頁顯示條數 pageline 5 計算總記錄數 zongpag...
php原生資料庫分頁
header content type text html charset utf 8 連線資料庫 con mysql connect 資料庫位址 資料庫賬號 資料庫密碼 if con mysql select db 資料庫名 con 每頁顯示條數 pageline 5 計算總記錄數 zongpag...