Login   Register  
PHP Classes
elePHPant
Icontem

File: exampleSimple.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of anggiajuang patria  >  Ciul Pager  >  exampleSimple.php  >  Download  
File: exampleSimple.php
Role: Example script
Content type: text/plain
Description: Example
Class: Ciul Pager
Generate navigation links for paginated listings
Author: By
Last change: Just simple example
Date: 2006-06-22 07:24
Size: 528 bytes
 

Contents

Class file image Download
<?php
/*
 * Created on Jun 22, 2006
 * Project CiulPager
 * File name exampleSimple.php
 * Author nk913
 * This is a simple example how to use CiulPager
 * Please checkout the class quiet easy to read.
 * If you now better algorithm to accomplish same thing,
 * please let me know about it.
 * Sorry with my English, my bad ;)
 * Just a newbie in PHP and English :P
 */
require_once 'CiulPager.php';
 
$pager= new CiulPager(array('iItem'=>200));
echo 
$pager->display().'<br />';
echo 
$pager->getResult(); 
?>