12

How can i define variable not in PHP but in .TPL? (smarty template file)

Svisstack
  • 16,203
  • 6
  • 66
  • 100
János
  • 32,867
  • 38
  • 193
  • 353

2 Answers2

25
{assign var=foo value=Test}

or some more complicated example:

{assign var=foo value={cycle values="first,second"}}
Svisstack
  • 16,203
  • 6
  • 66
  • 100
2

is assign what you are looking for?

GWW
  • 43,129
  • 11
  • 115
  • 108