Hi,
I am trying to get the url of the page currently in the browser, I saw this code in another post and tried it...
$url = $_SERVER["PHP_SELF"];
$array = explode("#",$url);
$txt=($array[1])
but I get an empty string. Is there any PHP settings that may affect my retrieval of this value ?
I am running PHP 4.2.3
Register Globals is ON
any others I need to check ?
Many thanks.