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

SNMP编程

开发平台:

C/C++

  1. <html>
  2. <head>
  3. <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
  4. <meta name="GENERATOR" content="Microsoft FrontPage 4.0">
  5. <meta name="ProgId" content="FrontPage.Editor.Document">
  6. <title>MRTG remove switch:</title>
  7. </head>
  8. <body>
  9. <p><b><u>MRTG update switch stats:</u></b></p>
  10. <FORM ACTION=update.php METHOD=POST>
  11.   <table border="0" width="100%">
  12.     <tr>
  13.       <td width="12%">Switch:</td>
  14.       <td width="88%"><select size="1" name="switch">
  15. <?
  16. include ("e:\mrtg\conf\config.inc.php");
  17. $dir = dir($mrtg_config_dir);
  18. // echo "<ul>";
  19. while($filename=$dir->read()) {
  20. if (eregi(".(cfg)$",$filename))
  21. echo "<option value=".substr($filename, 0, -4).">".substr($filename, 0, -4)."</option>";
  22. }
  23. $dir->close();
  24. //echo "</ul>";
  25. ?>
  26.        </select></td>
  27.     </tr>
  28.   </table>
  29.   <br>
  30.   <input type="submit" value="Update" name="B1">
  31. </form>
  32. <hr>
  33. </body>
  34. </html>
  35. <?
  36. // Include config file with path variable, etc...
  37. include ("e:\mrtg\conf\config.inc.php");
  38. if($REQUEST_METHOD == "POST"){ 
  39. system ($perl_exe." ".$mrtg_exe." ".$mrtg_config_dir.$switch.".cfg");
  40. echo "Mrtg stats for <b><a href=".$switch.".html".">".$switch."</a></b> updated...<br>";
  41. }
  42. echo "<br><a href=./>Back to index</a>";
  43. ?>