Hi I'm trying to create a simple page with three menu select drop downs, the choices available are dependent upon what was selected in the previous drop down.
E.G.
1st display food types,
the user selects FRUIT
2nd Displays Fruit types
the user selects Apples
3rd displays apple types
the user selects an apple.
I have got this working between the first and second menus, by writing a Jquery function to $_POST the select choice through to a php scripted file which generates the html code.
However it doesn't work between the 2nd and 3rd menus, I believe because the html code for the second drop down is being generated from a separate php file and displayed using javascript. Could someone point me towards how I should tackle this problem or point me towards an example please?
Thanks for your help, I am currently trying to teach myself basic web development so sorry if I got some terminology wrong!