I have a csv file, that contains a lot of information like:
FiscalCode, Number, Data
I have a fiscalCode of a person, and I should compare if the fiscalCode of person is in the csv file.
How can I do??
I have think something like:
$filename = ('mycsvfile.csv');
$f = fopen($filename, 'r');
if ( $f ) {
while( ( $line = fgetcsv($f)) !== false){
// there i should compare
}
}