PHP Classes

File: medianpage.php

Recommend this page to a friend!
  Classes of dhananjay kumar   Page Navigator - with median   medianpage.php   Download  
File: medianpage.php
Role: Example script
Content type: text/plain
Description: example page
Class: Page Navigator - with median
Generate paginated listing metadata
Author: By
Last change:
Date: 13 years ago
Size: 814 bytes
 

Contents

Class file image Download
<?php
error_reporting
(E_ERROR);
ini_set('display_errors',1);
include (
'PageNavigation.Class.php');
#change your server path here
define('WEB_URL','http://localhost/classes/pagination/');#set your url path
$iPage = $_REQUEST['page'];
$total = 256;
echo
"No. of data: ".$total."<br/>";
 
$fileName = WEB_URL.'medianpage.php?page'; #set your file to be shown in page
$oPN = new PageNavigation;
$aPageDetails = $oPN->getPageNavigation($iPage, $total, $fileName);

#Array ( [navigation] => 1 2 3 4 next [currentpage] => 1 [startpos] => 0 [limit] => 10 [noofpages] => 20 )

$navigation = $aPageDetails['navigation'];
echo
"<div width='100%' align='center' style='padding:50px;margin:20px;'><div style='display:block;height:25;border:1px dotted green;width:360px;'>".$navigation."</div></div>";

?>