Read .csv file into Array
function readCSV($file) {
$data = []; // create empty array
$handle = fopen($file, "r"); // create file handle
while (($row = fgetcsv($handle)) !== false) { // read each row
$data[] = $row; // add row to data array
}
fclose($handle); // close the file handle
return $data; // return the array
}