- Introducing AJAX 4:47
- Review: AJAX Basics 5 questions
- How AJAX Works 4:45
- Review: How AJAX Works 5 questions
- A Simple AJAX Example 10:46
- Create an XMLHttpRequest Object 1 objective
- Finish the AJAX Request 2 objectives
- GET and POST 6:21
- Review HTTP Methods 5 questions
- AJAX Response Formats 3:42
- Review AJAX Response Formats 4 questions
- Create an XML File 3 objectives
- Finish the XML Document 1 objective
- AJAX Security Limitations 5:16
- Review AJAX Security Limitations 5 questions
Quiz Question 1 of 5
Which of these is a difference between GET and POST?
Choose the correct answer below:
-
A
POST is limited to 2083 characters in some browsers. GET lets you send unlimited data to a web server in every browser.
-
B
POST is only for sending data to a web server. You don't send data with GET requests.
-
C
The GET method sends a single request in the URL. The POST method sends two requests: a URL request, and a data request.
-
D
POST sends its data in the "body" of the request. GET sends data in the URL.
-
E
GET is most often used to send data to be stored in a database. POST is not.