scout adlı üyeden alıntı: mesajı görüntüle
Evet aynen

$file = fopen("dosya.txt",'r'); 
$basla=0; 
while(!feof($file)){ 
	$satir = fgets($file); 	
	if($basla=='1'){
		echo $satir;
		break;
	}
	if(stristr($satir,'ARANANKELIME')){
	   $basla++;
	}
} 
fclose($file);