Skip to content
Advertisement

Add headers to CSV file via PHP

I have the following PHP script for creating CSV and collecting data from HTML form to CSV file, but I can’t add headers to the first row of CSV file. I’m a newbie in PHP world so I’ll appreciate if anyone can use this code to help me with that:

JavaScript

Advertisement

Answer

You could create a array with your keys, and create a loop to get values. Then use fputcsv() to write header and values:

JavaScript

Edit: To add values but not BOM and headers each time, you could check if the file exists, and add them only if the file is new:

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