Say for example, I am pulling 3 article from 2 forums.
I am currently using this to print articles of a couple different forums.
PHP Code:
if (!isset($title))
{
eval('$article .= "' . fetch_template('title') . '";');
}
if (isset($article))
{
eval('$article .= "' . fetch_template('article') . '";');
}
The problem (obviously) is that it only displays the title to the first forum set. Instead of doing this:
Forum title
thread
thread
thread
Forum title
thread
thread
thread
It obviously does this:
Forum title
thread
thread
thread
thread
thread
thread
What would I need to change this to in order to make this work correctly?