1
Hi,
I currently set a smarty variable like this:
$GLOBALS['xoopsTpl']->assign('variable_name', 'value i want to assign it');
By setting this in page A.php I can access it in the theme.html file while loading page A.php. However when I surf to B.php, via A.php, the variable is lost in theme.html. How can I make this global variable persistent for the whole module?
I basically want to call it in theme.html the whole time, by setting it's value only once, on a particular php page.
Thanks a million,
Vram