PHP Classes

File: example.php

Recommend this page to a friend!
  Classes of Ali Arshad   EzPagination   example.php   Download  
File: example.php
Role: Example script
Content type: text/plain
Description: How to use easy pagination
Class: EzPagination
Show pagination links for listings split in pages
Author: By
Last change:
Date: 11 years ago
Size: 1,246 bytes
 

Contents

Class file image Download
<?php
////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////Create By Ali Arshad (ali@idevelop247.com)///////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////
require_once('pagination1.0.php');
$page = new pages;
$getPages=mysql_query("SELECT * FROM users WHERE 1");
$page->total=mysql_num_rows($getPages); //Total Records
$page->limit=10; //Number of records to show pr page
$page->url='user.php'; //page name
$page->validate();



//To display pagination
$page->displayPages();
//To show users query would be like:
$getUsers=mysql_query("SELECT * FROM users WHERE 1 limit $page->limit offset $page->offset");

?>