Is there some way for me to pass parameters through gallery in order to affect a modified Bread crumbs?
What I am thinking are 2 parameters.
either mode=events&eventid=$eventid or else mode=users&userid=$userid
I would need this parameters to be passed from page to page.
thanks
Posts: 352
I guess you could always use the session object. Something like this
{assign var=Mode value=""} {php} if (isset($_GET['mode'])){ $this->assign('Mode', $_GET['mode'];); $_SESSION['mode'] = $_GET['mode'];; } else if (isset($_SESSION['mode']) $this->assign('Mode', $_SESSION['mode'];); {/php} {if $Mode == 'events'} {else} {if $Mode == 'users'} {/if} {/if}Steve Lineberry
Posts: 32509
or globals...