rellapdrella

Untitled

Jul 2nd, 2013
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. INVECE DI:
  2.  
  3. $lines = file('nomefile.txt');
  4. ...
  5.  
  6. USA:
  7.  
  8. $lines = explode(PHP_EOL, file_get_contents('nomefile.txt'));
  9.  
  10. foreach($lines as $line) {
  11.     $line = trim($line);
  12.     echo '<option>'.$line.'</option>'.PHP_EOL;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment