Problem Statement
Which superglobal provides information about headers, paths, and script locations?
Explanation
$_SERVER contains server and execution environment information like REQUEST_METHOD, PHP_SELF, and SERVER_NAME.
Code Solution
SolutionRead Only
echo $_SERVER['PHP_SELF'];
