Guest User

Untitled

a guest
Jun 21st, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. <?php
  2.  
  3. $raw = file_get_contents("drive1.txt");
  4. $lines = explode(chr(10), $raw);
  5. $output = '<ol>';
  6. foreach($lines as $line) {
  7. $output .= '<li>' .$line .'</li>';
  8. }
  9. $output .= '</ol>';
  10.  
  11. echo $output;
  12. ?>
Add Comment
Please, Sign In to add comment