I was reading
this (very good) article about sessions, and learned for the first time how GET and POST variables are actually sent via HTTP. The part that really interested me was how the POSTed vars just appear as a name-value string that forms one of the headers.
Is it possible to see this in our log files? I currently GET most of my vars, since it makes it much easier to debug when looking at access_log. I don't do that with sensitive info, but I'd still prefer to use POST than GET if I could still easily follow a user's interaction by having a record of POST in a log somewhere.
So first of all, is this possible? And secondly, is this something I can do myself or should I open up a ticket?