Advertisement
nicx321

PhPMc

Nov 20th, 2018
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.40 KB | None | 0 0
  1. <html>
  2. <head>
  3.   <title>AppleTree Ghetto Stats</title>
  4.   <link rel="shortcut icon" href="FaviconMC.ico" type="image/x-icon">
  5. </head>
  6. <body>
  7. <pre>
  8. <?php
  9. $fh = fopen("/home/vps/TCP_Dump.txt",'r');
  10. while (!feof($fh)) {
  11.   $Ch = fgetc($fh);
  12.   if($Ch == "\n"){
  13.     echo("<br>");
  14.   }else if($Ch == "\r"){}
  15.   else{
  16.     echo($Ch);
  17.   }
  18. }
  19. fclose($fh);
  20. header("Refresh: 10;");
  21. ?>
  22. </pre>
  23. </body>
  24. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement