Thanks in advance!
I created a PDF Form using Adobe Acrobat and set the action button to submit the form to the URL of my server.
After fill out the form in the browser and hit submit, It sends a POST request to the URL but without any data
When I inspect the network, I find that there is a lot of binary data inside "Request Payload" where I can find information of the submitted form (Screenshot)
I can retrieve the "Payload Request" string using file_get_contents('php://input')
I wonder is this the correct way of doing it?
If it is, is there a standard way how I can parse the "Payload Request" string into form fields and values?
Thanks