Removed Records per page as a setting and added it as session variable define at 10 by default when logged in DB Structure Updated

This commit is contained in:
johnny@pittpc.com
2021-02-10 13:40:28 -05:00
parent 45fea53441
commit 66f9e2b10f
45 changed files with 133 additions and 132 deletions

View File

@@ -76,4 +76,9 @@ scratch. This page gets rid of all links and provides the needed markup only.
}
//Set Records Per Page
if(empty($_SESSION['records_per_page'])){
$_SESSION['records_per_page'] = 10;
}
?>