44 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <!--Force IE6 into quirks mode with this comment tag-->
 | |
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
 | |
| "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 | |
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
 | |
| <head>
 | |
| 
 | |
| <!--This script should appear below your LINK stylesheet tags -->
 | |
| 
 | |
| <script src="styleswitch.js" type="text/javascript">
 | |
| 
 | |
| /***********************************************
 | |
| * Style Sheet Switcher v1.1- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
 | |
| * This notice MUST stay intact for legal use
 | |
| * Visit Dynamic Drive at http://www.dynamicdrive.com/ for this script and 100s more
 | |
| ***********************************************/
 | |
| 
 | |
| </script>
 | |
| <script type="text/javascript">
 | |
| window.onload=function(){
 | |
| var formref=document.getElementById("switchform")
 | |
| indicateSelected(formref.switchcontrol)
 | |
| }
 | |
| </script>
 | |
| </head>
 | |
| 
 | |
| <body>
 | |
| 	<?php
 | |
| /*
 | |
| * Script: Server Status
 | |
| * Author: Martin Dixon
 | |
| * From: Tutorial-Resource.com
 | |
| * URL: www.tutorial-resource.com
 | |
| * Version: 1.0
 | |
| * License: Free
 | |
| */
 | |
| 
 | |
| # Get our Bootstrap file.
 | |
| require "ss_bootstrap_servers.php";
 | |
| 
 | |
| # Print our Server Status.
 | |
| echo $serverStatus
 | |
| ?>
 | |
| </body>
 |