Guest User

Untitled

a guest
Jul 21st, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. <?php
  2. require('txt2html.php');
  3.  
  4. $log_dir="chanlogs";
  5. $log_name="#slackhappy.20110126.log.txt";
  6. $log_path=$log_dir.'/'.$log_name;
  7. $log_handle=fopen($log_path,"r");
  8. $log_size= filesize($log_path);
  9.  
  10.  
  11. $print_contents=file_get_contents($log_path, false);
  12. $print_contents=txt2html($print_contents);
  13.  
  14. ?>
  15. <html><head></head><body>
  16.  
  17. <?php echo($print_contents); ?>
  18.  
  19. </body></html>
Add Comment
Please, Sign In to add comment