Here is what I am trying to do,
Retrieve the data that is in the http request header for traffic analysis. I want to get the broweer, ip, operating sys, language, page requested, referer, host and keyword.
Below is what I have been able to dig up so far.
$_SERVER['PHP_SELF']
$hostname
$_SERVER['REMOTE_ADDR']
$HTTP_REFERER
$HTTP_ACCEPT_LANGUAGE
That is pretty much my entire want list but but I am short the keyword. But I am just searching blindly.
Where can I find the way to retrieve this infromation? I have just been doing it by trial and error so far and have hit a road block. Surely somewhere there is the information on how to retrieve the data that is in the header. I have found alot that tells me what is in the header but have found NONE on how to retrieve the data
Thanks
John