index.php
上传用户:shbosideng
上传日期:2013-05-04
资源大小:1555k
文件大小:1k
源码类别:

SNMP编程

开发平台:

C/C++

  1. <html>
  2. <head>
  3. <meta http-equiv="Content-Language" content="en-us">
  4. <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
  5. <meta name="GENERATOR" content="Microsoft FrontPage 4.0">
  6. <meta name="ProgId" content="FrontPage.Editor.Document">
  7. <title>Mrtg statistics</title>
  8. </head>
  9. <body>
  10. <p><u><b>Configuration:</b></u></p>
  11. <ul>
  12.   <li><a href="login.php">Administration (password requiered)</a></li>
  13. </ul>
  14. <p><u><b>Switch list:</b></u></p>
  15. <?
  16. // Replace this path with the path to the config.inc.php file
  17. include ("c:\mrtg\conf\config.inc.php");
  18. $dir = dir($mrtg_html_dir);
  19. echo "<ul>";
  20. while($filename=$dir ->read()) {
  21. if (eregi(".(html)$",$filename))
  22. echo "<li><a href=".$filename.">".substr($filename, 0, -5)."</a></li>";;
  23. }
  24. $dir ->close();
  25. echo "</ul>";
  26. ?>
  27. </body>
  28. </html>