Skip to content
Advertisement

How to display line by line a csv file in PHP with a particular structure? [closed]

I have this code that reads a csv file and displays it in this form :

JavaScript

First the header and then all the lines.

I would like to display like this:

JavaScript

And so on.

How to display the result with this format?

JavaScript

Advertisement

Answer

Your code will work with a bit modification:

1.Get headers first and assigne them to an array

2.Now loop over the values and combine them to header array to make them key value pair array

3.Loop over this key-value pair array and print it in desired format

4.Your delimiter is ; not , (according to what you shown in code sample)

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement