Friday, August 30, 2013

Joomla find current page URL with query string

$uri = & JFactory::getURI();
$pageURL = $uri->toString();
echo $pageURL;


This will find the absolute path, but will not fetch query string
$pageURL = JURI::current();
echo $pageURL;


No comments:

Post a Comment