19 lines
		
	
	
		
			464 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			464 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<body>
 | 
						|
<table width='275' cellspacing='0' cellpadding='1'>
 | 
						|
  <tr onclick="toggleNextRow(this)">
 | 
						|
    <th style='text-align: left;'><font color='white'>Server Up Time</font></th>
 | 
						|
  </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>
 | 
						|
</table>
 |