Adam Amstrong 9ca765c285 Lots of additions.
git-svn-id: http://www.observium.org/svn/observer/trunk@108 61d68cd4-352d-0410-923a-c4978735b2b8
2007-06-24 14:56:47 +00:00

19 lines
316 B
PHP

<meta http-equiv="refresh" content="60">
<?
$sql = "select * from syslog ORDER BY datetime DESC LIMIT 1000";
$query = mysql_query($sql);
echo("<table cellspacing=0 cellpadding=2 width=100%>");
while($entry = mysql_fetch_array($query))
{
include("includes/print-syslog.inc");
}
echo("</table>");
?>
</table>