分頁顯示是我們常常需要用到的,所以我為大家寫了乙個分頁類,大家只用匯入相應的專案就可以使用了!
page.class.php
匯入使用
<?php
require_once './page.class.php';//這裡匯入該類
$link=mysql_connect("127.0.0.1","root","");
mysql_select_db('dh');
mysql_query("set names 'utf8'");
$result = mysql_query ( "select * from serve" , $link );
$total = mysql_num_rows ( $result );
$per=2;
$page1 = new page($total, $per);
echo $page = $page1 -> fpage();
?>
以下是顯示的結果:
PHP通用分頁類
page.class.php 分頁類 呼叫方式 p new page 總條數,顯示頁數,當前頁碼,每頁顯示條數,鏈結 print r p getpages 生成乙個頁碼陣列 鍵為頁碼,值為鏈結 echo p showpages 1 生成乙個頁碼樣式 可新增自定義樣式 總條數,需要顯示的頁數,當前頁,...
PHP通用分頁
php通用分頁,先看下樣式 如下 header content type text html charset utf 8 傳入頁碼 page isset get p get p 1 page page 0 intval page 1 conn mysql connect 127.0.0.1 root...
通用頁面訊息類
using system using system.collections.generic using system.linq using system.web using system.io using system.text using system.web.ui namespace smart...