i am facing problem in x-cart, i am trying to create session and store value in x-cart for that, i used
x_session_register('subscription');
and the simple variable in it
$rs=1;
if($rs==1)
{
$subscription=1;
}
else
{
$subscription=0;
}
after that used some code in tpl file like,
{$smarty.session.subscription}
but nothing happen i also tried
{php}{/php}
$_SESSION[''];
but cant help me, i cant understand whats going wrong with that there is different file and template also file path is different try to create session in login.php and want this in head.tpl file please help me on that. thanks in advance