Let's say that I have: (fsockopen or curl with show headers)
Ex of fsockopen
The headers will be something like this:
HTTP/1.1 200 OK
Server: nginx
Date: Thu, 26 Nov 2009 04:04:38 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Set-Cookie: iVisited=1; expires=Thu, 26-Nov-2009 05:04:38 GMT; path=/; domain=.example.com
so not all the GET headers are grabbed (the same with curl)
So I need to see all request headers, I looked around and didn't found anything.
How can I get all request header for example like the addon of firefox Live HTTP Headers ?
Is there a way or should I let this go ?