Top "Post" questions

POST is one of the HTTP protocol methods; it is used when the client needs to send data to the server, such as when uploading a file, or submitting a completed form.

How can I select and upload multiple files with HTML and PHP, using HTTP POST?

I have experience doing this with single file uploads using <input type="file">. However, I am having trouble …

php html http post upload
jQuery - Illegal invocation

jQuery v1.7.2 I have this funcion that is giving me the following error while executing : Uncaught TypeError: Illegal invocation Here's …

jquery ajax post
POST data to a URL in PHP

How can I send POST data to a URL in PHP (without a form)? I'm going to use it for …

php post
How to prevent form resubmission when page is refreshed (F5 / CTRL+R)

I have a simple form that submits text to my SQL table. The problem is that after the user submits …

php html forms post form-submit
How do I send a POST request as a JSON?

data = { 'ids': [12, 3, 4, 5, 6 , ...] } urllib2.urlopen("http://abc.com/api/posts/create",urllib.urlencode(data)) I want to send a POST request, …

python json http url post
Get the POST request body from HttpServletRequest

I am trying to get the whole body from the HttpServletRequest object. The code I am following looks like this: …

java servlets post
POST data in JSON format

I have some data that I need to convert to JSON format and then POST it with a JavaScript function. &…

javascript json post xmlhttprequest
How to get body of a POST in php?

I submit as POST to a php page the following: {a:1} This is the body of the request (a POST …

php rest post
After submitting a POST form open a new window showing the result

JavaScript post request like a form submit shows you how to submit a form that you create via POST in …

javascript html post
Getting request payload from POST request in Java servlet

I have a javascript library that is sending a POST request to my Java servlet, but in the doPost method, …

java http servlets post