Ok, first off I'm a noob when it comes to PHP.
I'm just trying to find out if these are available server variables to PHP.
I've seen this link here:
[
php.net...]
and I was wondering if most of the server variables in mod_rewrite were also available.
[
httpd.apache.org...]
Two especially.
1. THE_REQUEST
2. HTTP_COOKIE
So for PHP:
1. $_SERVER['THE_REQUEST']
2. $_SERVER['HTTP_COOKIE']
I've seen $_SERVER['HTTP_COOKIE'] being used, so I was wondering if $_SERVER['THE_REQUEST'] could be used. These are for a security script that I'm working on.
Any suggestions would be greatly appreciated.