generate functionFri, 27 Jan 2023

import csv from local file and store all line in array. Loop on the array to get all specific columns

$row = 1; if (($handle = fopen("test.csv", "r")) !== FALSE) { while (($data = fgetcsv($handle, 1000, ",")) !== FALSE) { $num = count($data); echo "<p> $num fields in line $row: <br /></p>\n"; $row++; for ($c=0; $c < $num; $c++) { echo $data[$c] . "<br />\n"; } } fclose($handle); }

Questions about programming?Chat with your personal AI assistant