$txt = file_get_contents("metin.txt");
$explode = explode("/", $txt);

foreach($explode as $row){
    echo $row."<br>";
}