user840298
user840298

Reputation:

How can i set a session from a smarty template page?

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

Upvotes: 1

Views: 9881

Answers (1)

Wojciech Jasiński
Wojciech Jasiński

Reputation: 1490

You should not. Smarty is template engine - you should use it for displaying data only. Sessions should be handled inside controllers => in PHP files.

Upvotes: 4

Related Questions