You could have a text confirmation, then build a query string and assign that to a link. The query string would have all the values you want to pre-populate for their second form submission, and would be a link back to this same form. You'd have to set up the form fields to be populated dynamically. The first time around, the fields would be empty, but the second time, they would be pre-filled with the data they submitted.
This would be done in the text confirmation.
I set up a quick form here. The first name, last name, and phone will be pre-populated for the second and subsequent submissions: http://gravity.chrishajer.com/pre-populate-fields-for-next-submission/
Here is the text confirmation I used:
[html]
Thank you for your submission. <a href="http://gravity.chrishajer.com/pre-populate-fields-for-next-submission/?fname={Name (First):1.3}&lname={Name (Last):1.6}&phone={Phone:4}">Submit another</a>?
I checked the box "Allow field to be populated dynamically" on the advanced tab for the name and phone field. I used parameter names of fname, lname and phone, which you can see match the query string parameter names. They must match exactly.
Posted 13 years ago on Tuesday October 25, 2011 |
Permalink