Multiple choice

There is much larger limit on the amount of data that can be passed by using _______ method.

  1. GET

  2. PUT

  3. POST

  4. None of these

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

The POST method sends data in the HTTP request body, not the URL. This allows much larger data transfers (no theoretical limit, practically up to server's post_max_size setting, often 8MB+), making it suitable for file uploads and long forms.