How can i set a session from a smarty template page? I want to set a session variable like
$_SESSION['id']['error'] = $id
i assigned the value of $id using smarty
{assign var=id value=$arrayname.2}
Now i have to use this value while assiging session variable.
How can i do this?
thanks in advance
You should not. Smarty is template engine – you should use it for displaying data only.
Sessions should be handled inside controllers => in PHP files.