-
Split SQL Selected results can execute a given query and retrieve the results to display in the current page, given the limit number of results to display per page.The HTML code to display linked page numbers that allow browsing to different pages of the listing, can also be returned.Requirements: PHP 4.0 or higher
-
Split Query Results takes as arguments the total number of entries in a listing and the limit number of listing entries to show per page. The current listing page is retrieved from a GET request parameter.Links to open the next, previous and intermediate pages get generated.The next and previous links can be displayed with a text string or as an ...
-
Scramble Eggs can take a given text string, split it in pieces of the same size and insert random text between each piece. The original text can also be recovered from scrambled one.Requirements: PHP 5.0 or higher
-
MySQL Pagination can determine the number of rows returned by a query in order to calculate the total number of pages required to split the listing according to a specified per-page limit.A navigation bar with links to browse the listing can also be generated. MySQL Pagination also executes the query and returns an array with only the records to be ...
-
Semantic pagination can generate HTML links to browse arbitrary lists of entries split into multiple pages. It takes as parameters the limit of entries to list per page, the total number of entries and the base URL to generate the navigation links.Semantic pagination can generate links for the listing pages including to the next, previous, first and last pages. The ...
-
Elements of an array of arbitrary depth can be referenced using a single string the represents the element array indexes separated by commas.Multi-Dimensional Array Handler can take an element index string and set or get its value, check if the element is set, or check it is empty or return the count of entries if the element is an array.Requirements: ...
-
Database query results can be split over multiple pages and the output can be defined using Smarty templates. The templates may define the presentation of listings as table rows with links to browse different listing pages.Key Features of Paginator Iterator:- Paginates results from a given SQL- Iterates the paginated results (p_item and p_alternating plugins)- Allows to create a page navigator- ...
-
Paging is meant to generate navigation links to split listings of arbitrary information between multiple pages. Usually this is meant for paging listings of database query results but it can also be used for paging any other kind of listings.Paging takes the total number of records in the whole listing, the limit number of records to be displayed per page ...
-
The listing can be split across several pages.
-
Pagination optimized takes as parameters limit of list entries per page, the number of the current page and an SQL query that returns the total number of query result rows.Pagination optimized returns an SQL query with a LIMIT clause to retrieve only the records to show in the current page. It also shows links to browse query results in other ...
-
Paginations takes as parameters a SQL query, the limit number of result rows to display per page, and the number of the listing page being displayed.Paginations executes the query to retrieve the results of the current page and stores the result handle in a class variable. It also generates HTML with links to go to the first, last, next, previous ...
-
An SQL query and the limit of records to display per page are passed the parameters.A simple pagination using MySQL can execute the query retrieving only the rows that are for the current page. It can also generate links to browse the pages on which the query results are displayed.Requirements:PHP 4.0 or higher
-
Perfect Paging takes as parameters the link base URL, the total number of entries in the listing, the limit of entries to display per page and the name of a request variable that is used to pass the page number.Perfect Paging can generate HTML to display links to go to the first, previous, next and last listing pages. Links that ...
-
Pagination class takes as parameters the names of MySQL table, query fields, the first result row to display, the number of rows to display per page, and the base URL of the navigation link.HTML links that allow navigating forward and backward between listing pages, are generated.Requirements:PHP 3.0 or higher
-
Page indexer classes can be used to generate links for Google style navigation bars to browse listings split in multiple pages. It takes as parameters the total number of list entries, the limit of entries to display per page, and the number of the page being displayed.There is a also a sub-class that renders the navigation bar for the current ...

