In an HTTP GET request, parameters are sent as a query string:
example.com/page?parameter=value&also=another
*
In an HTTP POST request, the parameters are not sent along with the URI.
Where are the values? In the request header? In the request body? What does it look like?