<?php $stringnum=5; $th = fopen ("news.inc", "r"); for ($i=0;$i<$stringnum;$i++){ if(!feof ($th)) { $news = fgets($th, 4096); echo $news; } } fclose ($th); ?>