After the submission, is it possible to assign a conformation number that is automatically generated? Like an order number, or reservation number.
Thanks :)
After the submission, is it possible to assign a conformation number that is automatically generated? Like an order number, or reservation number.
Thanks :)
Comments
Comment #1
quicksketchAll submissions are always assigned a "submission ID". This ID is included in the default webform email template, shown as a link to view the submission.
Comment #2
rankinstudio commentedWoah, that was fast..
Is there a way to have that submission id come up on the conformation page..like, "thank you, your reservation ID is (submission id)"
Thanks
Comment #3
quicksketchIf you want to be really simple, you can use the PHP input format and print out the SID with this:
Thank you, your reservation ID is <?php print $_GET['sid'] ?>However the SID is just in the URL, so someone could in theory just change the URL and it would make the reservation ID change also.
Comment #4
quicksketch