Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[php] Find Current Page URL and Display

Experienced Elementalist
Joined
Jun 16, 2010
Messages
249
Reaction score
76
Here's a simple PHP function to detect, and then echo the current page URL where ever you decided to echo the function.

Code:
[COLOR="SeaGreen"]##Page URL##[/COLOR]
function pageURL() {
$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;
}
 
Last edited:
Back
Top