processData(); function readCSV($csvFile){ $file_handle = fopen($csvFile, 'r'); while (!feof($file_handle) ) { $line_of_text[] = fgetcsv($file_handle, 1024); } fclose($file_handle); return $line_of_text; } $csvArray = readCSV('andersons_bay_sample.csv'); echo "
"; } else { echo " | " . $csvArray[0][$j] . " | "; } } else { if($csvArray[$i][$j] == null) { echo ""; } else { echo "" . $csvArray[$i][$j] . " | "; } } } echo "
---|