This tool demonstrates how HTML forms can be submitted via POST in two different formats:
field1=value1&field2=value2
).
This is typically used for simple form submissions without files.
By selecting one of these modes from the dropdown, the tool sets the corresponding
Content-Type
for the form. After you fill out the form and click "Submit Data," the tool will display:
Content-Type
header that would be sent
Note: For demonstration purposes, the form submission is intercepted by JavaScript
(event.preventDefault()
), so the data is never actually sent to a server.