Globals
Returns the current URL address minus the domain name (121)
Date Published: October 20, 2009
 <?php 
$pageOn 
basename($_SERVER['REQUEST_URI']);
echo 
$pageOn//returns the current URL address
 
minus the domain name
?>