Hello!
Is it possible in PHP to get values of HTTP request headers that aren't specified as environmental variables? Unfortunately, getenv() doesn't work in this case.
Example, client sends request:
GET /test.php HTTP/1.1
host: localhost
X-SOME-UNUSUAL-HEADER: 123abc
In this case, getenv("X-SOME-UNUSUAL-HEADER") doesn't return "123abc".
May be you have solution for this, or it's impossible? I have PHP/4.0.6 as an ISAPI module on Apache/1.3.20 (Win32).
Thanks,
Igor