Need to Change form id in POST

Change the form ID in POST data for a multi-page form submission.

Overview

The issue occurred because the form's HTML structure was incorrect, preventing the form ID from being included in the POST data.
Ensure the form is properly coded and add any required keys or unique identifiers to the final submission page before posting.

Answered
ja jax_pls 03 May, 2016
I am using a multi-page form and on the final page the submit action posts to a URL. How can I change the form id in the POST data?

<form action="https://go.somewebsite/webform/post" method="post" name="ActionStepWebform7" id="chronoform-ActionStepWebform7" class="AdvancedForm Webform1">
  <div class="form-group" id="form-row-btn_submit">
    <div class="gcore-input gcore-display-table" id="fin-btn_submit">
      <input name="btn_submit" id="btn_submit" type="submit" value="Submit" class="" style="" data-load-state="" form="">
    </div>
    </div>
      <input type="hidden" name="btn_submit" value="Submit">
      <input type="hidden" name="btn_submit" value="Submit">
</form>
Gr GreyHead 03 May, 2016
Hi jax_pls,

The Form ID won't be in the POST data - nor will much else from this form as the HTML is a bit broken.

What exactly are you trying to do.

Bob
ja jax_pls 03 May, 2016
I will have a 3 to 4 page form that I need to post the data from to a back-end processing system we use via URL.

Do I need to do something with the data array on the last page where the submit action is in order to do so?
Gr GreyHead 03 May, 2016
Hi Jax_pls,

The Redirect action will let you send data via GET

Bob
ja jax_pls 03 May, 2016
Answer
Issue resolved... bad coding on my part. I needed to add my org key and unique id to the page that submits.

Thanks!
This topic is locked and no more replies can be posted.