I was wondering if there was a way to get at the raw HTTP request data in PHP running on apache that doesn\'t involve using any additional extensions. I\'ve seen the HTTP functi
Do you mean the information contained in $_SERVER?
$_SERVER
print_r($_SERVER);
Edit:
Would this do then?
foreach(getallheaders() as $key=>$value) { print $key.': '.$value.""; }