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.

Dynamic Population & Query Strings help

  1. Hi,

    SO i've read through the documentation, and have tried playing around with my forms to see what happend, but so far i have had no luck.

    I am hoping someone can help me out ;)

    I want to do this:

    Pass the following field inputs:
    Domain Name (Text Field)
    Extension (Select Drop Down)
    Post Title (Currently a hidden field)
    From form A (which is on a post)

    And populate the Domain Name, Extension and the Title of the post form A was submitted on into fields that are displayed on form B (which is on a page).

    One problem that I am getting is that the Redirect URL is not found in. I am redirecting to the page with form B on and am using the following query string:

    {Enter your desired domain name.:1}&{Choose your extension:2}&{embed_post:post_title}

    Can anyone help or advise please.

    Thanks

    Posted 12 years ago on Wednesday July 20, 2011 | Permalink
  2. You aren't handling the query string properly. You are only outputting the values, you aren't including parameter names. Your query string needs to consist of a parameter name and it's value with each pair separated by an ampersand.

    For example:

    parameter=value&parameter=value

    So you would need to do something like this:

    http://i.imgur.com/sMPqn.png

    The parameter name you use in the query string is the same parameter name you configure when setting a field up to be populated dynamically in the form you are passing the data to.

    Posted 12 years ago on Wednesday July 20, 2011 | Permalink