In particular, I am interested in viewing the 3 main types of data routinely sent to PHP, and available in the $_GET
, $_POST
and $_COOKIE
arrays.
I’m not very conversant with HTTP, but as far as I am aware, the data sent from a form (method=post
or get
), a URL query string, or in cookies, is put into the HTTP headers and then sent to the server. (I’m not entirely sure whether that’s the case for method=post
). It is, for the most part, in plain text.
The question is, how can I view this HTTP content in its raw form?
I am interested mainly to get a better understanding of the process.
AllMost modern major browsers (including Microsoft's) include such a tool ;-P – Álvaro González May 31 '17 at 07:43