generate functionFri, 27 Jan 2023

import csv from local file and put values into an array, then loop on each line of the array with key value

<?php $csv = array_map('str_getcsv', file('movies.csv')); foreach($csv as $row) { echo "<pre>"; print_r($row); echo "</pre>"; } ?>

Questions about programming?Chat with your personal AI assistant