Jason Paschal wrote:
Trying to get the current viewed page's URL (query string intact).

this works, but infrequently:

$url = $_SERVER['URI'];

How about $_SERVER['REQUEST_URI']

and this ignores the query string:

$url = $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF'];

or you could add/check for $_SERVER['QUERY_STRING'] here.

--

---John Holmes...

Amazon Wishlist: www.amazon.com/o/registry/3BEXC84AB3A5E/

php|architect: The Magazine for PHP Professionals – www.phparch.com

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to