Try:
PHP Code:
// Get Popular Articles
$populararticle = $DB_site->query("
SELECT *
FROM thread
WHERE forumid IN (252,253,254,255,256,257,258,259,260,261,262,263,264)
ORDER BY views DESC
LIMIT 10
");
while ($populararticles = $DB_site->fetch_array($populararticle))
{
eval('$library_populararticles .= "' . fetch_template('library_populararticles') . '";');
}
// Get Popular Articles
If the views still aren't right, try changing ORDER BY views DESC to ORDER BY views ASC