Change:
PHP Code:
while ($row = mysql_fetch_array($result)) {
$threadurl .= $row['threadurl'];
$imageurl .= $row['imageurl'];
eval('$highlights = "' . fetch_template('highlights') . '";');
}
To:
PHP Code:
while ($row = mysql_fetch_array($result))
{
$threadurl = $row['threadurl'];
$imageurl = $row['imageurl'];
eval('$highlights .= "' . fetch_template('highlights') . '";');
}