rhymix/classes/db/queryparts/limit/Limit.class.php
2011-05-25 11:32:54 +00:00

16 lines
No EOL
259 B
PHP

<?php
class Limit {
var $start;
var $end;
function Limit($page, $list_count){
$this->start = ($page-1)*$list_count;
$this->end = $list_count;
}
function toString(){
return $this->start . ' , ' . $this->end;
}
}
?>