Files
librenms-librenms/html/pages/syslog.php
T

19 lines
316 B
PHP
Raw Normal View History

2007-04-03 14:10:23 +00:00
<meta http-equiv="refresh" content="60">
<?
2007-06-24 14:56:47 +00:00
$sql = "select * from syslog ORDER BY datetime DESC LIMIT 1000";
2007-04-03 14:10:23 +00:00
$query = mysql_query($sql);
2007-06-24 14:56:47 +00:00
echo("<table cellspacing=0 cellpadding=2 width=100%>");
2007-04-03 14:10:23 +00:00
2007-06-24 14:56:47 +00:00
while($entry = mysql_fetch_array($query))
{
include("includes/print-syslog.inc");
2007-04-03 14:10:23 +00:00
}
2007-06-24 14:56:47 +00:00
echo("</table>");
2007-04-03 14:10:23 +00:00
?>
</table>