Ok, let's say I have this:
Code:
eval("dooutput(\"".gettemplate("site_templatename_v$v")."\");");
Ok, so that calls the right template, where $v is set either by user CP or the address bar.
But that makes the templates very unorganized. Say I want it like this:
Code:
eval("dooutput(\"".gettemplate("site_v$v_templatename)."\");");
It tries to parse a non-existing variable, $v_templatename.
How would I go about telling it to end it at $v and parse it correctly?