Get current url
<?php //get the current page URL that is shown in the browser URL window function curPageURL() { Â $pageURL = ‘http’; Â if ($_SERVER[“HTTPS”] == “on”) {$pageURL .= “s”;} Â $pageURL .= “://”; Â if ($_SERVER[“SERVER_PORT”] != “80”) { Â $pageURL .= $_SERVER[“SERVER_NAME”].”:”.$_SERVER[“SERVER_PORT”].$_SERVER[“REQUEST_URI”];