A hint: This file contains one or more very long lines, so maybe it is better readable using the pure text view mode that shows the contents as wrapped lines within the browser window.
1 <?php 2 3 require_once("connect.php"); 4 5 $title = "About Node Runner"; 6 require_once("header.php"); 7 8 echo ' 9 <p> </p> 10 <table width="100%" border="0" cellpadding="3" cellspacing="0" align="center"> 11 <tr> 12 <td> 13 <img src="images/runners.png" width="116" height="200" align="right" hspace="10"> 14 <div style="font-size:11px;text-align:justify"> 15 <a style="text-decoration:none;font-size:11px" href="http://sourceforge.net/projects/node-runner/" target="_blank">Node Runner v'.$nr_ver.'</a> is a PHP-based network monitor designed to contact nodes in a hierarchial fashion based on the configuration of the node. If a node does not respond, dependencies (parents) of that node are systematically polled until the problem is isolated. 16 <br><br> 17 Special thanks for the patience of those who have contributed bug reports and conducted testing. Open source software would not be possible without the support and involvement of the Internet community. 18 <br><br> 19 Copyright © 2001-2005 Brad Fears. All Rights Reserved. 20 <br><br> 21 This software is made freely available under the <a style="text-decoration:none;font-size:11px" href="http://www.gnu.org/copyleft/gpl.html" target="_blank">GNU GPL</a> license. See the README file for further information. 22 </div> 23 <br><br> 24 <center><a href="http://www.tricountywebdesign.com/" target="_blank"><img src="images/tcwd-logo.gif" alt="Tri-County Web Design, LLC" border="0" width="288" height="88"></a><br> 25 <div style="font-size:11px;"> 26 Need custom web software? <a style="text-decoration:none" href="http://www.tricountywebdesign.com" target="_blank">Visit us on the web!</a> 27 </div></center> 28 </td> 29 </tr> 30 </table> 31 '; 32 33 require_once("footer.php"); 34 35 ?>