'/errors.php'), 'Výpis chyb aplikací'); if(array_key_exists('page',$_GET)) $Page = $_GET['page']; else $Page = 0; $PageItems = 20; $Cols = array('time' => 'Čas', 'application' => 'Aplikace', 'version' => 'Verze', 'release_date' => 'Datum vydání', 'unit' => 'Jednotka', 'method' => 'Metoda', 'line_number' => 'Řádek', 'message' => 'Zpráva', 'exception' => 'Vyjímka', 'address' => 'Adresa', 'state' => 'Stav', 'remote_addr' => 'IP adresa', 'remote_host' => 'Počítač'); $Output .= ''; foreach($Cols as $Index => $Item) $Output .= ''; $DbResult = $Database->select('app_errors', '*', '1 ORDER BY id DESC LIMIT '.$Page*$PageItems.','.$PageItems); while($Row = $DbResult->fetch_assoc()) { $Output .= ''; foreach($Cols as $Index => $Item) { if($Row[$Index]=='') $Output .= ''; else $Output .= ''; } $Output .= ''; } $Output .= '
'.$Item.''; $Output .= '
 '.$Row[$Index].'
'; $DbResult = $Database->select('app_errors', 'COUNT(*)'); $Count = $DbResult->fetch_assoc(); $Output .= PagesList('show_errors.php?page=', $_GET['page'], $Count[0], $PageItems); ShowFooter();