Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- INVECE DI:
- $lines = file('nomefile.txt');
- ...
- USA:
- $lines = explode("\n", file_get_contents('nomefile.txt'));
- foreach($lines as $line) {
- $line = trim($line);
- echo '<option>'.$line.'</option>\n';
- }
Advertisement
Add Comment
Please, Sign In to add comment