When my client's are giving their inputs into the Excel file, they need the column header. But when they export the file into CSV (.csv) it includes the column heads into it. That's problem.
+---------+--------+-------------+
| Post id | Name | Designation |
+---------+--------+-------------+
101 noYon designer
102 nakib accountant
103 nishi developer
+---------+--------+-------------+
In my CSV (comma delimited) I got:
Post id,Name,Designation 101,noYon,designer 102,nakib,accountant 103,nishi,developer
I need to exclude the column heads (the first row) from the CSV when uploading it to MySQL using PHP.
Is there any way?