Quote:
Today at 12:29 PM Breaker said this in Post #4
I put that in, but the template didn't show, not sure if i missed something out or something. I'm currently using two lines to display the template which seems to work:
PHP Code:
eval("\$ranking = \"".gettemplate('ranking')."\";");
print $ranking;
but the replacements aren't working
|
You are using single quotes where you need double quotes for one thing.
Try this...
eval("\$ranking = \"".gettemplate("ranking")."\";");
print $ranking;