Posted 11/24/2011 · 1 min read
This simple snippet of code will help you get the full URL of the currently viewed page.
function getUrl(){ $domain = $_SERVER['HTTP_HOST']; $url = "http://" . $domain . $_SERVER['REQUEST_URI']; return $url; }