[PHP] full http request

2004-12-10 Thread Mirek Novak
Hello people, is it possible to see full http request as it has arrived on server? I mean including all headers and etc. thanx -- Mirek Novak -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] full http request

2004-12-10 Thread M. Sokolewicz
Raditha Dissanayake wrote: Mirek Novak wrote: Hello people, is it possible to see full http request as it has arrived on server? I mean including all headers and etc. There is an extension for firefox that gives you the headers that are sent by the browser. At the other end the $_SERVER

Re: [PHP] full http request

2004-12-10 Thread Greg Donald
On Fri, 10 Dec 2004 11:57:23 +0100, Mirek Novak [EMAIL PROTECTED] wrote: is it possible to see full http request as it has arrived on server? I mean including all headers and etc. I use Ethereal: http://www.ethereal.com/ -- Greg Donald Zend Certified Engineer http://gdconsultants.com/

Re: [PHP] full http request

2004-12-10 Thread Jason Wong
On Friday 10 December 2004 18:57, Mirek Novak wrote: is it possible to see full http request as it has arrived on server? I mean including all headers and etc. apache_request_headers() if applicable. -- Jason Wong - Gremlins Associates - www.gremlins.biz Open Source Software Systems

Re: [PHP] full http request

2004-12-10 Thread Raditha Dissanayake
Mirek Novak wrote: Hello people, is it possible to see full http request as it has arrived on server? I mean including all headers and etc. There is an extension for firefox that gives you the headers that are sent by the browser. At the other end the $_SERVER variable contains this information