Even though I dont consider myself a newbie, I cannot seem to find the script to get the current browsers URL. I could prob. do it in Javascript, but, not in PHP
Regards; Alex.
$PHP_SELF ?
$PHP_SELF is the name of the script.
The superglobal $_SERVER[REQUEST_URI] contains the full URI, including any arguments passed with the GET method.
Read the section of the manual that covers variables from outside PHP:
http://us2.php.net/manual/en/language.variables.external.php
And get to know phpinfo().