| 
<?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();
 ?>
 
 |