Advertisement
Guest User

PRINT .NFO FILE

a guest
Feb 13th, 2016
319
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.19 KB | None | 0 0
  1. <?php
  2. header('Content-Type: text/html; charset=UTF-8');
  3.  
  4. $file = 'CORE.NFO';
  5. $nfo = file_get_contents($file);
  6.  
  7. echo '<pre>';
  8. echo iconv('CP850', 'UTF-8', $nfo).PHP_EOL;
  9. echo '</pre>';
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement