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.

More than one parameter in a query string

  1. I am linking to a form from emails sent to clients, and was hoping to automatically fill out a few fields with a query string embedded in a custom link on each email.
    I have it working with one parameter, but is it possible to put more than one into a query string?

    thanks
    Chris

    Posted 11 years ago on Wednesday October 31, 2012 | Permalink
  2. Yes. You have to add an ampersand and then the next parameter name and then the merge tag. Example:

    One parameter

    [php]
    name=Chris

    Multiple parameters

    [php]
    name=Chris&age=85&city=Chicago

    Take a look at a Google URL:
    https://www.google.com/search?hl=en&safe=off&site=&source=hp&q=halloween

    The format is:

    • ? (not required in the form builder)
    • parameter name
    • =
    • value (merge tag in the form builder)
    • &
    • parameter name
    • =
    • value (merge tag in the form builder)

    etc...

    Let me know if I missed your question completely.

    Posted 11 years ago on Wednesday October 31, 2012 | Permalink
  3. No that is spot on.
    I had tried that but it didn't work for me earlier...does now though, so I must have had my parameter or something wrong ;(
    thank you.

    Posted 11 years ago on Wednesday October 31, 2012 | Permalink
  4. You're welcome. Enjoy the day.

    Posted 11 years ago on Wednesday October 31, 2012 | Permalink

This topic has been resolved and has been closed to new replies.