Return to Snippet

Revision: 32544
at September 28, 2010 20:21 by neilp123


Initial Code
// This function defines the Absolute URL

function absolute_url($page = 'index.php') {

	$siteURL = 'http://' .$_SERVER['HTTP_HOST'] . dirname($_SERVER['PHP_SELF']);

	// Remove trailing slashes

	$siteURL = rtrim($siteURL, '/\\');

	// Add the page...

	$siteURL .= '/' . $page;

	// return the url..

	return $siteURL;

	} // End function

Initial URL


Initial Description


Initial Title
Absolute URL function

Initial Tags


Initial Language
PHP