Advertisement
soulshaker

VPS Information

Jun 17th, 2014
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.54 KB | None | 0 0
  1. <?php
  2. // Server Uptime And Hardware Information
  3. ?>
  4.  
  5. <html>
  6. <head>
  7. <title><?php echo $SERVER_NAME; ?> - VPS Information</title>
  8. <STYLE type=text/css>
  9. BODY { FONT-SIZE: 8pt; COLOR: black; FONT-FAMILY: Verdana,arial, helvetica, serif; margin : 0 0 0 0;}
  10. </STYLE>
  11. </head>
  12. <body>
  13. <pre>
  14. <b>Uptime:</b>
  15. <?php system("uptime"); ?>
  16.  
  17. <b>System Information:</b>
  18. <?php system("uname -a"); ?>
  19.  
  20.  
  21. <b>Memory Usage (MB):</b>
  22. <?php system("free -m"); ?>
  23.  
  24.  
  25. <b>Disk Usage:</b>
  26. <?php system("df -h"); ?>
  27.  
  28. </pre>
  29.  
  30. <br>
  31. <br>
  32. </body>
  33. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement