PHP Classes

File: example.php

Recommend this page to a friend!
  Classes of Nitesh Apte   Auto Pagination   example.php   Download  
File: example.php
Role: Example script
Content type: text/plain
Description: Usage script
Class: Auto Pagination
Generate listing pagination links
Author: By
Last change: Changed example.
Date: 9 years ago
Size: 200 bytes
 

Contents

Class file image Download
<?php
include_once 'class.AutoPagination.php';
$obj = AutoPagination::getInstance();
echo
$obj->paginateRecords(50, $_GET['page']); // 50 is the total record count selected from mysql database
?>