最初に私のスクリプトを見てください:
<?php
$list=file_get_contents('txt.txt');
$name=explode('\r\n',$list); //file exploding by \n because list is one under one
foreach($name as $i1){
echo ($i1);
echo '</br>';
}
?>
それは私の結果を示しています(リストによると):
morgan daniel martin sopie tommy
しかし、私は</br>
それが表示されているに違いないように使用しました:
morgan
daniel
martin
sopie
tommy
しかし、多分私は何かが欠けています。