$fp = fopen("download/prod/new01.txt", 'r'); while(!feof($fp)) { $data = fgets($fp, 1024); echo "$data
"; } fclose($fp); ?>