Guest User

Untitled

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