For vB2
PHP Code:
$msResult = $DB_site->query("
SELECT *
FROM my_table
ORDER BY created DESC
");
while($msData = $DB_site->fetch_array($msResult))
{
eval("\$variable .= \"".gettemplate('templatename')."\";");
}
Create 'templatename' template with the $msData variables inside, then use $variable in a template of your choice
For vB3:
PHP Code:
$msResult = $DB_site->query("
SELECT *
FROM my_table
ORDER BY created DESC
");
while($msData = $DB_site->fetch_array($msResult))
{
eval('$variable .= "' . fetch_template('templatename') . '";');
}
Same applies for this.