1- in instruction.txt limit instruction is still missing...
2- the number of item of the database that can be listed is limited to #256
this is probably due to the ceil () calcul in the php class module
private function getLastPage()
{
return ceil($this->totalrows / $this->rowsperpage);
}
this function should return an integer > 256
3 - when clicked from low pages numbers (<20) directly to last page (24 with 10 items per page) the list returned is empty...
it is not empty when next or 23 is clicked from page 23 in the pagination system.
I am using database with more then 10.000 items in php4
Dodit Suprianto - 2008-10-21 00:35:58 - In reply to message 1 from Delepiere
i agree with your statement on point 3 but not all. when i clicked page number 1-5 and jump to the last page, i found wrong page, i will fix it soon. thanks
Dodit Suprianto - 2008-10-21 08:53:30 - In reply to message 1 from Delepiere
i already uploaded the final release. That is no bugs anymore.
I try to read from 20.000 records and splitting to be 15 records per page. its fine and running well, no bugs.