I ran into a problem in x-cart, I'm trying to create a session and save the value in x-cart for this I used
x_session_register('subscription');
and a simple variable in it
$rs=1;
if($rs==1)
{
$subscription=1;
}
else
{
$subscription=0;
}
after that I used some code in the tpl file, for example,
{$smarty.session.subscription}
but nothing happens i also tried
{php}{/php}
$_SESSION[''];
but I can’t help me, I can’t understand what is happening with this; there is another file and template, also the path to the file is different try creating a session in login.php and want it in head.tpl please help me with this. thanks in advance
source
share