PHP : Get Current Page URL
Below is the PHP code snippest to get Current page URL.need to use $_SERVER array to get the server information.
$pageURL = 'http';
if ($_SERVER["HTTPS"] == "on") {$pageURL .= "s";}
$pageURL .= "://";
if ($_SERVER["SERVER_PORT"] != "80") {
$pageURL .= $_SERVER["SERVER_NAME"].":".
$_SERVER["SERVER_PORT"].$_SERVER["REQUEST_URI"]
}
else {
$pageURL .= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];
}
echo $pageURL;
Comments