dontpanic,
Instead of:
PHP Code:
while ($lastarticles = $DB_site->fetch_array($lastarticle))
{
eval('$library_lastarticle .= "' . fetch_template('library_lastarticle') . '";');
}
$lastarticlesdate = vbdate($vboptions['dateformat'], $lastarticles['dateline']);
$lastarticlestime = vbdate($vboptions['timeformat'], $lastarticles['dateline']);
It should be:
PHP Code:
while ($lastarticles = $DB_site->fetch_array($lastarticle))
{
$lastarticlesdate = vbdate($vboptions['dateformat'], $lastarticles['dateline']);
$lastarticlestime = vbdate($vboptions['timeformat'], $lastarticles['dateline']);
eval('$library_lastarticle .= "' . fetch_template('library_lastarticle') . '";');
}
Because you want the extract the date and time of each article so you must perform it during the while loop and also you have to place the code before the eval so that the lastarticlsesdate and time variables are included in the template.
Cheers,
g-force2k2