PHP user-defined function: simple paging Function

Source: Internet
Author: User
Tags key loop

<? Php
/**
* PHP paging User-Defined Function ite5e.com
* @ Param $ pageNum: Current page number
* @ Param $ pageSize: page size
* @ Param $ rowCount: Total number of records
* @ Param $ navUrl: URL of the Link Page
*/
Function getNavHtml ($ pageNum, $ pageSize, $ rowCount, $ navUrl ){
$ PageCount = (int) ($ rowCount/$ pageSize); // total number of pages
If ($ rowCount % $ pageSize> 0 ){
$ PageCount;
}
If ($ pageNum> $ pageCount ){
$ PageNum = 1;
}
$ FirstNav = "<a href =" {$ navUrl} page = 1 "> homepage </a> ";
$ LastNav = "<a href =" {$ navUrl} page = {$ pageCount} "> last page </a> ";
$ PrevNav = "";
$ NextNav = "";
If ($ pageNum> 1 ){
$ NavPageNum = $ pageNum-1;
$ PrevNav = "<a href =" {$ navUrl} page = {$ navPageNum} "> previous page </a> ";
}
If ($ pageNum <$ pageCount & $ pageCount> 1 ){
$ NavPageNum = $ pageNum 1;
$ NextNav = "<a href =" {$ navUrl} page = {$ navPageNum} "> next page </a> ";
}
$ AmongNav = "";

// Key Loop
For ($ I = 1; $ I <= 5; $ I ){
$ NavPageNum = $ pageNum $ I-3;
If ($ navPageNum> 0 & $ navPageNum <= $ pageCount ){
$ NavCss = $ navPageNum = $ pageNum? "Class =" hover "":"";
$ AmongNav. = "<a href =" {$ navUrl} page ={$ navPageNum} "$ navCss >{$ navPageNum} </a> ";
}
}
Return $ firstNav. $ prevNav. $ amongNav. $ nextNav. $ lastNav. "". $ pageNum. "/". $ pageCount. "Total [". $ rowCount. "] data entries ";
}
?>

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.