I have a CSV file (say "../datarange.csv", made up of 8 columns and a variable amount of rows deep:
HEADER1,HEADER2,HEADER3...HEADER8
DATA001,DATA122,DATA355...DATA888
DATA002,DATA102,DATA322...DATA876
DATA003,DATA176,DATA344...DATA811
DATA435...DATA222
DATA311
I want to pull in only the data under "HEADER8" and have it populate a drop-down "option select" menu in a form using PHP. Each individual like down under "HEADER8" will be it's own individual option.
The idea is that users, on another form, submit data to populate "HEADER8" with suggested names, like brainstorming for a new feature's name. THIS form is to allow users to vote on the final selection and the form will write to a new CSV (this works fine though - I just need to pull in the CSV data from the previous CSV and make it the option menu in this form).
I don't need to pull it from a database or even touch MySql - only part of this I'm having trouble with is pulling from the old CSV to create the drop-down selection menu.
I appreciate the help!