PHP current page Url get function curPageURL(); - PHP Views : 1768
Tagged in : PHP
0 0
Send mail

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();
?>


By ArulKumar, On - 2009-08-21



    Login to add Comments .