The master coders here don't know this one?
So there's no way to get my old templates to reconize the data that's being pulled?
eg
Code:
<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
<tr>
<td align="left"><span class="nav"><a class="nav"<a href="list.php"
class="nav">Song Index</a></span></td>
</tr>
</table>
<table width="100%" cellspacing="1" cellpadding="3" border="0">
<tr>
<td valign="top">
<table class="forumline" width="100%" cellspacing="1" cellpadding="3" border="0">
<tr>
<th class="thHead">Welcome to </span></td>
</tr>
</table>
<br />
{PLAYER_FEATURES}
</td>
<td valign="top">
{PLAYER_STATS}
</td>
</tr>
</table>
$footer
I need to replace variables in my templates {PLAYER_FEATURES} so that VB will use them-
Where and how's it done?
Is it set via the actaul php script or via the CP Var Replacement thing?
Should {PLAYER_FEATURES} be changed to $PLAYER_FEATURES
Using the above as an example-
index template
inside of a template it pulls a variable called {PLAYER_STATS}
player stats is another template that contains html code and which get's it's data via sql
So instead of having to place all the html codes etc inside of the index template I can just pull data and dynamicly create the index tables, cells etc on the fly
Thanks