POST-application/x-www-form-urlencoded

This is a typical simple HTTP POST request. Resources https://ec.haxx.se/http-multipart.htmlhttps://developer.mozilla.org/en-US/docs/Web/HTTP/Methods/POST Example 1 Form html that is sent POST / HTTP/1.1 is for site root, for a specific file use: POST /some_directory/myfile.php HTTP/1.1

Read More

POST-multipart/form-data

This is a HTTP POST request sent with the request body specially formatted as a series of “parts”, separated by a boundary string. It allows a mix for form data, files etc to be sent as a HTTP POST. Resources https://ec.haxx.se/http-multipart.html https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods/POST Example 1 Form html that is sent Boundaries – IMPORTANT NOTE!!!! All boundaries […]

Read More