PLEASE NOTE: These forums are no longer utilized and are provided as an archive for informational purposes only. All support issues will be handled via email using our support ticket system. For more detailed information on this change, please see this blog post.

Two drop-downs dynamically populated?

  1. Is it possible to have two drop-downs dynamically populated?

    I tried this:
    ?downloadsend=send&?test=test2

    That worked on the first one, but not the second.

    Posted 13 years ago on Friday May 20, 2011 | Permalink
  2. That is because your query string isn't formed properly. You can't have 2 question marks in the query string, the question mark BEGINS the query string and you can't have another. The ampersand separates query string parameters, not the question mark.

    You have this:

    ?downloadsend=send&?test=test2

    It needs to be:

    ?downloadsend=send&test=test2

    Posted 13 years ago on Friday May 20, 2011 | Permalink
  3. Thanks, that works perfectly.

    I'm definitely getting there in understanding just how things work now.

    Posted 13 years ago on Friday May 20, 2011 | Permalink