how can get specified lines from file
$file_handle = fopen("file.txt", "rb");
while (!feof($file_handle) ) {
$line_of_text = fgets($file_handle);
$parts = explode(',', $line_of_text);
//from line 01 to line 100 echo "Lines 1";
//from line 100 to line 200 echo "Lines 2";
//from line 400 to line 1000 do somthing
}
fclose($file_handle);
I need this output
//from line 400 to line 1000 do somthing
//from line 100 to line 200 do somthing