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.

Sending parameters to a step-based form...

  1. developdaly
    Member

    I have two forms: Pre-Apply and Apply.

    Pre-Apply is a simple 3 field form.

    Apply is a 3 step form. The first step is the same as the Pre-Apply.

    How could I send the user from the Pre-Apply form to the Apply form and SKIP the first step if they already provided those values?

    Posted 11 years ago on Monday December 17, 2012 | Permalink
  2. David Peralty

    You can't have it skip a step, but you can set it so your confirmation redirects to your other form with query strings and have it auto-fill fields, but that's all you can do where that is concerned.

    Posted 11 years ago on Monday December 17, 2012 | Permalink
  3. developdaly
    Member

    Yeah, I'm doing that already. I might just try redirecting the user to different Apply forms.

    if( $GET['field1'] == true && $GET['field2'] == true && $GET['field3'] == true ) {
    // go to form 1
    } else {
    // go to form 2
    }
    Posted 11 years ago on Monday December 17, 2012 | Permalink