Changeset 4 for trunk/show_errors.php
- Timestamp:
- Jul 27, 2016, 11:28:39 PM (8 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:ignore
-
old new 1 1 config.php 2 .buildpath 3 .project 4 .settings
-
- Property svn:ignore
-
trunk/show_errors.php
r3 r4 12 12 foreach($Cols as $Index => $Item) $Output .= '<th>'.$Item.'</td>'; 13 13 $Output .= '</tr>'; 14 $DbResult = $Database->select( $DB_Prefix.'app_errors', '*', '1 ORDER BY id DESC LIMIT '.$Page*$PageItems.','.$PageItems);14 $DbResult = $Database->select('app_errors', '*', '1 ORDER BY id DESC LIMIT '.$Page*$PageItems.','.$PageItems); 15 15 while($Row = $DbResult->fetch_assoc()) 16 16 { … … 24 24 } 25 25 $Output .= '</table>'; 26 $DbResult = $Database->select( $DB_Prefix.'app_errors', 'COUNT(*)');26 $DbResult = $Database->select('app_errors', 'COUNT(*)'); 27 27 $Count = $DbResult->fetch_assoc(); 28 28 $Output .= PagesList('show_errors.php?page=', $_GET['page'], $Count[0], $PageItems);
Note:
See TracChangeset
for help on using the changeset viewer.