The csv file contains
ID,Record
1,R1
2,R2
3,R3
4,R4
5,R5
Consider the above is my csv file data and i have a variable with $ProcessAfter ='R3'; Then it should remove the first three data. The Below is my file reading code
while(!feof($file)) {
fgetcsv($file,0,$fieldseparator); //To read each line
}