Number of Records per page is now configurable

This commit is contained in:
johnny@pittpc.com
2021-01-15 19:51:40 -05:00
parent 2fe105303c
commit 7b4618c16f
39 changed files with 151 additions and 117 deletions

View File

@@ -4,13 +4,14 @@
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
//Paging
if(isset($_GET['p'])){
$p = intval($_GET['p']);
$record_from = (($p)-1)*10;
$record_to = 10;
$record_from = (($p)-1)*$config_records_per_page;
$record_to = $config_records_per_page;
}else{
$record_from = 0;
$record_to = 10;
$record_to = $config_records_per_page;
$p = 1;
}