6
When I read regarding the request I always get the term post together, and that raises me a doubt. I understand that the request serves to make a request for something to the server and then the server sends a reply after processing the request, and when reading about the post it seems to me that it does the same thing, and it is at this point that it generates doubt, I cannot understand the difference between them.
Question
I wonder if there’s a difference between Request and Post, if any, I would like to know the main differences between them and also the main purpose of Post?
Feel free to give practical examples in any programming language if you like.
Is your doubt between Post and Get? Or both?
– Sergio
@Sergio I’m studying Http, I still know what is Get, if to understand the difference between Post and Request it is necessary to understand what is Get, can explain about it tbm :).
– gato
Some related things: http://answall.com/q/118213/101, http://answall.com/q/49322/101, http://answall.com/q/93308/101, http://answall.com/q/9419/101, http://answall.com/q/92870/101
– Maniero
post e um metodo de requisicao existe outros varios tipos de metodo como get put header se Voce quer vc pode até criar o seu acho qu e isso requisicao e o que todos clientes http fazem entre outros protocolo agora post e só um metodo desta requisicao Voce pode teste suas requisicoes on this https site://httpbin.org/
– user45474
In PHP at least,
$_POST
is the data from the form (methodPOST
).$_REQUEST
is the mix of dataPost
,Get
,Cookie
. It is the first thing that comes to mind :D– Wallace Maxters