<?php
require('page.php');
//*******************分頁開始
$data="執行sql語句,查詢出想要的資料";
$count="統計所要資料的總數";
//以tp框架為例
$m=m('表名');
$condition['欄位名稱']="字段值";
$data=$m->select();
$count=$m->where($condition)->count();
$page_size = 10;//分頁條,一頁幾個;控制分頁條頁數,
$step_size =10;//模板展示一頁幾個;控制頁面展示個數
$step = intval($_request['step']);
if($step==0)$step = 1;
$page = intval($_request['p']);
if($page==0)$page = 1;
$limit = (($page-1)*$page_size+($step-1)*$step_size).",".$step_size;//$limit=string(3) "0,*"
$testlist=$m->limit($limit)->select();
$page = new page($count,$page_size); //初始化分頁物件
$p = $page->show();
$this->assign('pages',$p);
//$this->assign('data',$data);//將查詢結果$data陣列傳遞到前台頁面
//**************分頁結束
//html檔案
php後端分頁 PHP實現資料分頁顯示功能的方法
這篇文章主要為大家詳細介紹了基於php實現資料分頁顯示功能,分頁在後台管理中是經常使用的功能,分頁顯示方便大量資料的管理,感興趣的小夥伴們可以參考一下 實現 使用者列表 con mysql connect localhost root mysql query set names utf8 mysql...
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...