<?php
$oku = file_get_contents("text.txt");
$bol = explode('\n', $oku);
$say = count($bol) - 1;
for($i=0;$i<=$say;$i++){
$dizi[$i] = $bol[$i];
}
?>