<TMPL_LOOP NAME="loopname">
<TMPL_VAR NAME="<TMPL VAR NAME="anothervariable">">
</TMPL_LOOP>
What I want to to is pretty much like this:
$a= 1;
$b = 'a';
print $$b;
As you see ,I need to refer to the variable whose name is contained in another variable,
but the above doesn’t work..
Is there a way to work around?
There’s no way to do that AFAIK.