The Send Post Data option in the Form Builder allows you to send your form data to an endpoint via an HTTP POST request. For debugging purposes, you can use https://www.jotform.com/show-post-data/ as an endpoint or destination URL.
To view your form’s submissions as POST data
- In the Form Builder, go to Settings at the top.
- Select Thank You Page on the left.
- Select Redirect to an external link after submission.
- Enter https://www.jotform.com/show-post-data/ as the destination URL.
- Turn on Redirect with HTTP POST, then send a test entry to your form.
You should now be able to see your submission’s data structure and POST variables. In this example form, the output looks as follows:
Data Submitted:
Array ( [submission_id] => 5264586364403223222 [formID] => 213185545698973 [ip] => 10.146.210.44 [name] => Array ( [first] => Jane [last] => Doe ) [email] => jane.doe@jotform.com [message] => Lorem ipsum dolor sit amet consectetur. )
PHP Code:
$_POST['submission_id'];
$_POST['formID'];
$_POST['ip'];
$_POST['name']['first'];$_POST['name']['last'];
$_POST['email'];
$_POST['message'];
Send Comment:
82 Comments:
16 days ago
How to pass certain field value and add the value just after the external link is it possible ??
87 days ago
how to send the file data through submission api.? can you please give me one example .
169 days ago
Consulta, ¿Cómo puedo incluir el mail de la persona en la página de agradecimiento de mi web?
Question: How can I include the person's email on the thank you page of my website?
339 days ago
how to access Signature...
More than a year ago
At least on our instance, step 3, Scroll down to Send Post Data and set it to “Enabled.” is incorrect. This is enabled on the Thank You Page.
More than a year ago
Hello,
webhook body data is sent in PHP format not JSON. Some backend platforms as retool read json objects not php as incoming webhooks. Is it posibble to transform it to json array? I know i can use auotmation services to read it and process it but im trying to use the post data directly to retool databse. Am i a little lost here?
More than a year ago
So a user is going to see code after submission?
More than a year ago
Is this obsolete? I don't get a thank you page choice on my menu.
More than a year ago
Thank you for such valuable information.
More than a year ago
It is taking too much time after submitting the data to get result,
More than a year ago
Help
More than a year ago
Thanks a lot.
But do this script work with PHP7?
Or are some changes to 'mysqli' necessary?
regards,
Sascha
More than a year ago
I am trying to use Sinatra (Ruby) to read the Jotform POST data.
But All I get is the raw multipart data. Can anyone assist?...
More than a year ago
Hey Charmiequino, I would like to connect through linkedin.
Here's the link.
More than a year ago
transfer data from one form to another form after submit
More than a year ago
How can i add a pie graph that takes values for four colors, each colour takes value from a hidden field that calculates average score of some suvey questions. ?
More than a year ago
I have my POST data. Now what do I do with it? Are there instructions somewhere to get this into the Thank you page?
More than a year ago
Is it possible to get the file attachments as well? if so, how?
regards
More than a year ago
hi!
it is possible to autocomplete some info into a nother form viar URL?
something like this?
mythankyoupage.com/?name=?$_POST['name']
regards!
More than a year ago
Hi,
I tried to send data to https://www.jotform.com/show-post-data/ but nothing happens.
I've a blank page :-(
What's the mistake?
More than a year ago
I was trying to use Redirect to External Link on the Thank you page...
More than a year ago
Excellent! This helps me to create a really cool, custom Thank You page.
More than a year ago
Does check marking "Add existing contacts to Constant Contact" mean that any existing prior submissions in the form will be added to constant contact?
More than a year ago
this giude was quite helpful
More than a year ago
Hi,
We are created a Jotform for yearly user registration with Name, Email, Address, School information, Collage Information and other fields.
We have previous registered user information in CC with all above field.
We want to load a previous user info after user given his email address. So previously user can update his/her information if required and saved in CC.
For new user all a new record get created in CC after submission of Jot Form.
Can you please let us know how we can integrate the Jotform with CC.