mysql+php分頁類(已測)

來源:互聯網
上載者:User

複製代碼 代碼如下:<?php
/*
mysql_pager.class.php

三個參數。 mysql_query()的結果, url變數page, 您要的每頁記錄數
例子在這個檔案底部
淡水河邊整理測試
*/

class mysql_pager {
// define properties
var $page;
var $result;
var $results_per_page = 3;
var $total_pages;

/*
Define the methods

下面是建構函式,和類同名(>php4)
需要查詢的結果控制代碼,當前頁碼,每頁記錄數
like: $f->mysql_pager($result, 1, 15);
*/

function mysql_pager( $result, $current_page, $results_per_page ) {

if(!$result){
echo "<div align=center>資料庫未運行,結果集錯誤</div>\n";
return;
}

$this->result = $result;

if(!$current_page || $current_page < 0)
$this->page = 1;
else $this->page = $current_page;

if(!emptyempty($results_per_page))
$this->results_per_page = $results_per_page;

$numrows = @mysql_num_rows($this->result);
if(!$numrows) {
echo "<div align=center>查詢結果為空白.</div>\n";
return;
}

$this->total_pages = ceil($numrows / $this->results_per_page);
}

/*
下面是列印內容的函數,可以不用,也可以根據自己的需要擴充
這裡只是列印出id
*/

function print_paged_results() {
echo "<table border=0 align=center>\n";
$start = ($this->page - 1) * $this->results_per_page;
mysql_data_seek($this->result, $start);
$x = 0;
for($i = 1; $i <= $this->results_per_page && $row = @mysql_fetch_array($this->result); $i++) {
if($x++ & 1) $bgcolor = "#F2F2FF";
else $bgcolor = "#EEEEEE";

echo "<tr bgcolor=$bgcolor><td>". $row["id"] . "</td></tr>";
// 編輯這部分輸出任何您想要的HTML

}

echo "</table>\n";
}

/*
下面是列印頁碼和連結的函數
在我們需要顯示頁碼的地方調用
*/

function print_navigation() {
global $PHP_SELF;

echo "<div align=center>";

for($i = 1; $i <= $this->total_pages; $i++) { #loop to print << 1 2 3... $total_pages >>
if($i == 1 && $this->page > 1) #Prints the << first to goto the previous page (not on page 1)
echo "<a href=\"$PHP_SELF?page=".($this->page - 1)."\" onMouseOver=\"status="Previous Page";return true;\" onMouseOut=\"status=" ";return true;\">?</a>";

if($i == $this->page) #Doesn"t print a link itself, just prints page number
echo "<font color=\"#ff3333\"> $i </font>";

if($i != $this->page) #Other links that aren"t this page go here
echo "<a href=\"$PHP_SELF?page=$i\" onMouseOver=\"status="Go to Page $i";return true;\" onMouseOut=\"status=" ";return true;\"> $i </a>";

if($i == $this->total_pages && $this->page != $this->total_pages) # Link for next page >> (not on last page)
echo "<a href=\"$PHP_SELF?page=".($this->page + 1)."\" onMouseOver=\"status="Go to the Next Page";return true;\" onMouseOut=\"status=" ";return true;\">?</a>";
}

echo "</div>\n";
}

}

/*
mysql_connect($server, $uname, $pass );
mysql_select_db("$db");
$result= @mysql_query("Select * FROM table");

$p = new mysql_pager( $result, $page=$_GET["page"], 10 );
$p->print_navigation();
$p->print_paged_results();
$p->print_navigation();
*/
?>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.