Hi. First off, let me say I am not an experienced php guy. So, now that you know I am "challenged" when it comes to this kind of stuff, here's what I'm trying to do.
Building a user registration form to capture user location data - so, say, Country, Province/State and City. All of that data is driven by drop downs - with conditional logic dictating which forms should show or not. As an example, if I select COuntry: Canada, only Canadian provinces pop up. Then if I select Province Alberta, only cities from Alberta show up. That is done and works fine. Now what I am trying to do is capture the information from the city field so I can pass it along to the user city field.
The reason this is hard is because I have over 70 different lists that are conditionally going to appear based on previous selections. So how do I merge the values from these 70 lists into one value? I've tried making a hidden field with merge values but can't get those to work. Would a function adding up the value of all of the fields work? I have been working on this for 5 hours and my head is ready to explode. Any help would be much appreciated.