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.

Using if(isset($_POST['submit'])) to not display echo when script is open is not working

I have a little problem with my if(isset($_POST['submit'])) code. What I want is some echos and a …

php mysql post if-statement isset
RAW POST using cURL in PHP

How can I do a RAW POST in PHP using cURL? Raw post as in without any encoding, and my …

php post curl put
How to make HTTP Post request with JSON body in Swift

I'm trying to make an HTTP post request with a JSON body : How to be able to add an NSdictionnary …

json swift http post
Firefox Add-on RESTclient - How to input POST parameters?

I've installed Firefox RESTclient add-on but , I'm having hard time figuring out how to pass POST parameters. Is there a …

rest post firefox-addon
Getting 400 bad request error in Jquery Ajax POST

I am trying to send an Ajax POST request using Jquery but I am having 400 bad request error. Here is …

jquery ajax post http-status-code-400
Multiple inputs with same name through POST in php

Is it possible to get multiple inputs of the same name to post and then access them from PHP? The …

php html arrays forms post
415 Unsupported Media Type - POST json to OData service in lightswitch 2012

I am getting 'error 415: Unsupported Media Type' when posting to an OData service when using JSON. Solution at the bottom …

json web-services post odata visual-studio-lightswitch
How to use getJSON, sending data with post method?

I am using above method & it works well with one parameter in URL. e.g. Students/getstud/1 where controller/…

jquery asp.net-mvc post http-post getjson
What is the right way to POST multipart/form-data using curl?

I used this syntax to post a file along with some parameters: curl -v -include --form "key1=value1" --form upload=…

forms post curl
How are POST and GET variables handled in Python?

In PHP you can just use $_POST for POST and $_GET for GET (Query string) variables. What's the equivalent in …

python post get