PHP current page Url get function curPageURL();
by ArulKumar[ Edit ] 2009-08-21 11:01:54
How to Get the Current Page Url in PHP
//This the current page Url get function in php
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"];
} else {
$pageURL .= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];
}
return $pageURL;
}
?>
//to display the retrieved current page Url
echo curPageURL();
?>