habib009pk Posted July 15, 2009 Share Posted July 15, 2009 Dear Friends I have a little problem, i want to make a back button on the content pages which will go backward to the previous itemid page, and this process should be dynamic. Is there any code to put on the link for going in backward direction. I am working in joomla 1.5.10 Thanks and Best Regards Quote Link to comment Share on other sites More sharing options...
UnsuitableBadger Posted August 25, 2009 Share Posted August 25, 2009 <?php // Get Previous Page Itemid $parameters = end(explode("?",$_SERVER['HTTP_REFERER'])); $parameters = explode("&",$parameters); foreach ($parameters as $parameter) if (substr($parameter,0,6) == "Itemid") $Itemid = substr($parameter,7,strlen($parameter)-7); ?> OR $link = $_SERVER['HTTP_REFERER']; OR <a href="javascript:history.go(-1)">Back</a> Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.