Ok, this one should be easy...
I have a php form that loads a combo box (select box in html speak)
The part I can't figure out...
Based on what the USER selects in the combo box, I want to show ALL of the items in another table that has been associated with it.
For example:
if the user selects "OPTION1", then I want to go to my data table and get all the records that have "OPTION1" in the type field.
The problem I'm having is that the only way I know to get that data is by reloading the page, but if I reload the page, I wipe out whatever the user has picked...
Any Ideas...