This is my code to check if a row of my .csv file contains a specific name, but it does not work.
I think it has something to do with the if statement.<
if
Try using in_array instead of ==
if(in_array('paul', $line_of_text)) { // FOUND }