Here's my situation:
I have a form that has 2 select boxes with multiple options.
For the First dropdown, I have assigned IDs to each option (1,2,3,etc)
For the Second dropdown, I have also assigned IDs to each option (01,02,03,etc)
When a user chooses an option from both select boxes and hit submit, I need to the form to processes the information so it realizes that both a First_id and a Second_id are selected, combines the two together -- $First_id.$Second_id -- and redirect the user to another page.
I think that what I need to do is assign different names to the select boxes and then have 2 different variables with different values and then can concantenate the first id to the second id and then redirect to the new page.
Problem is, I'm not too sure how to do that.
If you could help me out, I would appreciate it.
Thanks!