下面是一個簡單的php連接mysql數據庫進行數據分頁顯示的模版
注意分析和觀察裡面相關分頁部分的代碼的書寫和實現的方式
<?php
$link = mysql_connect(
mysql_select_db(
?>
//這裡插入你的html代碼
<?php
$sql =
$result = mysql_query($sql) or die(mysql_errno()
$rs=mysql_fetch_object($result);
$recountCount = $rs
$show =
$totalPage = ceil($recountCount/$show);
$page = (isset($_GET[
$isLast = ($page==($totalPage
$hasNoPre = ($page==
$hasNoNext = ($page==$totalPage
$isFirst = ($page==
$start = $page*$show;
mysql_free_result($result);
?>
//這裡插入你的html代碼
<?
$sql =
$result = mysql_query($sql) or die(mysql_errno()
while($rs=mysql_fetch_object($result)){
//這個循環裡的html代碼自己更具實際情況修改
echo $rs
echo
}
mysql_free_result($result);
?>
<?
$str =
$str
$str
$str
$str
echo $str;
?>
From:http://tw.wingwit.com/Article/program/MySQL/201311/29496.html