KLanding/feeds/uptime.php

20 lines
446 B
PHP
Raw Normal View History

2016-04-07 13:25:35 +01:00
<body><div class="Widgets">
2016-03-23 16:03:43 +00:00
<table width='275' cellspacing='0' cellpadding='1'>
<tr onclick="toggleNextRow(this)">
2016-04-07 13:25:35 +01:00
<th>Server Up Time</font></th>
2016-03-23 16:03:43 +00:00
</tr>
<tr>
<td BGCOLOR='#FFFFFF'>
<div id="Uptime" style="font:11pt Arial; color:#0066FF;">
<?php
require_once ('WindowsUptime.class.php');
$windowsUptime = new WindowsUptime();
echo $windowsUptime->uptime(); // Default output format
?>
</div>
</select>
</form>
</td>
2016-04-07 13:25:35 +01:00
</table>
</div>