I received some documentation on how to read from my companies HTTP header for ASP and Java but I'm looking to read this in with PHP. Here's the examples they gave me, can someone direct me on how I can accomplish this?
ASP
For the User ID_: strUserID=Request.ServerVariables(“HTTP_IV_User”)JAVA
For the User ID_: strUserID=request.getHeader(“iv-user”);