Is it possible to issue http methods like get,post manually without using browser? -


I would like to know whether to manually execute different HTTP protocol methods like GET, Post, Head, etc. without browser Is it possible either from a command prompt or by using a programming language?

If so, how to do it?

Please brighten up !!!

makes it very easy:

  get # curl For http://www.google.com/ # head curl-I http: //www.google.com/ # post application / x-www-form-urlencoded curl -d "parameter1 = value 1and; See parameter 2 = value 2 "http://stackoverflow.com   

for examples of how to do more advanced requests.

Comments