$file = fopen("Minot.txt", "r") ;

while(!feof($file))
{
 echo fgets($file);
}
fclose($file);