difference between $_SERVER[‘REQUEST_URI’], $_SERVER[‘PHP_SELF’], and __FILE__
$_SERVER[‘REQUEST_URI’] is what you type in your address bar of your browse(no protocol and host part). $_SERVER[‘PHP_SELF’] is the url of the first file loaded(no protocol and host part) with […]

