Get the Current URL of Page with PHP

Get the Current URL of Page with PHP

Get the Current URL of Page with PHP

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; }