About 187,000 results
Open links in new tab
  1. What is the difference between POST and GET? [duplicate]

    Aug 13, 2010 · So essentially GET is used to retrieve remote data, and POST is used to insert/update remote data. HTTP/1.1 specification (RFC 2616) section 9 Method Definitions contains more …

  2. When do you use POST and when do you use GET? - Stack Overflow

    Sep 6, 2008 · From what I can gather, there are three categories: Never use GET and use POST Never use POST and use GET It doesn't matter which one you use. Am I correct in assuming those three …

  3. How should I choose between GET and POST methods in HTML forms?

    Nov 5, 2012 · GET and POST method in HTTP are two most popular methods used to transfer data from client to server using HTTP (Hyper Text Transfer Protocol) protocol. Both GET and POST can …

  4. forms - When should I use GET or POST method? What's the difference ...

    Feb 3, 2009 · What's the difference when using GET or POST method? Which one is more secure? What are (dis)advantages of each of them? (similar question)

  5. Handling GET and POST in same Flask view - Stack Overflow

    Feb 3, 2017 · 8 Here is the example in which you can easily find the way to use POST, GET methods and use the same way to add other curd operations as well..

  6. What's the difference between $_POST, $_GET, and $_REQUEST?

    Oct 29, 2019 · 2) Both GET and POST are treated as $_GET and $_POST. These are superglobals, which means that they are always accessible, regardless of scope - and you can access them from …

  7. HTTP verbs - When to use GET/POST/PUT/Delete - Stack Overflow

    Jul 22, 2014 · Wikipedia summarises the request methods and their expected behaviours. In general: A GET should be used for requesting information from the web service. A POST should be used to put …

  8. Explain and example about 'get', 'delete', 'post', 'put', 'options ...

    Nov 20, 2014 · I'm writing a webservice. Could any one explain these above methods and give me some example about them? Thank for your help.

  9. What is the difference between PUT, POST, and PATCH?

    Jun 27, 2015 · Therefore, use GET for querystring requests and POSTs when you need to post JSON data or files in the body of the request. IMO, anything else is trying to shoehorn obsolete concepts …

  10. c# - GET and POST methods with the same Action name in the same ...

    Mar 4, 2012 · To answer your specific question, you cannot have two methods with the same name and the same arguments in a single class; using the HttpGet and HttpPost attributes doesn't distinguish …