I am working on reading a file in php. I need to read specific lines of the file.
I used this code:
fseek($file_handle,$start); while (!feof($file_ha
You could use function file($filename) . This function reads data from the file into array.
file($filename)