PHP 4.4.9
I understand that the indices for $_SERVER are created by the web server. However, while doing a review - I came across this statement:
$_SERVER['ORIGINAL_PHP_SELF'] = $_SERVER['PHP_SELF'];
I know there is no index labeled ORIGINAL_PHP_SELF for the $_SERVER superglobal.
Can a user create their own $_SERVER index?
I tested this with the following on the cli:
php -r '$_SERVER['ORGINAL_PHP_SELF'] = "Test"; echo($_SERVER['ORIGINAL_PHP_SELF']);'
Nothing was returned.