jablonka.czprosek.czf

is

Subversion Repositories:
[/] [trunk/] [html/] [logy.php] - Rev 8 Go to most recent revision

Compare with Previous - Blame - Download


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-2">
<style type="text/css" media="screen"> @import "style.css"; </style>
<title>db.jablonka.cz - logy</title>
</head>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body topmargin=0 leftmargin=10>
<?
include ("header.htm");
include ("config.php");

?>

<h2>logy</h2>
<table>
<tr><td class=text>

<?
$myFile = $islogdir."/db.log";
$logy = file ($myFile);

$pocetradku =  count($logy);
$cntod = $pocetradku-30;
$cntdo = $pocetradku-1;
for ($i = $cntdo; $i >= $cntod; $i--) {
   if ($i>0){
     print $logy[$i]."<br>\n";
     }
   }

?>
</td></tr>
</table>



</body>
</html>

Powered by WebSVN 2.2.1