View difference between Paste ID: 0cJkRNm0 and qhQkkKYt
SHOW: | | - or go back to the newest paste.
1
INVECE DI:
2
3
$lines = file('nomefile.txt');
4
...
5
6
USA:
7
8-
$lines = explode("\n", file_get_contents('nomefile.txt'));
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>\n';
12+
	echo '<option>'.$line.'</option>'.PHP_EOL;
13
}