I have a form where the user selects a course from a dropdown, location from a dropdown and fills in a date in a text field manually.
I need to have the user select the course and location and the user can select from a list of available dates.
I would like to use a CSV file. I really have no other option because I cannot have our local DB on the web. This is something that would be generated twice weekly from our database.
The CSV file just contains course, location and dates. For example:
Course Location Date
Dreamweaver Intro Minneapolis, MN 1/5/2015
Dreamweaver Intro Minneapolis, MN 3/5/2015
Dreamweaver Intro Minneapolis, MN 5/5/2015
Illustrator Intro Orlando, FL 3/5/2015
Illustrator Intro Orlando, FL 1/5/2015
Illustrator Intro Orlando, FL 5/5/2015
I am basic with PHP and am not sure where to begin. I have found little information on working with cascading dropdown menus with CSV files. Any help would be appreciated.