Here's what I've got so far:
PHP Code:
$pop = $DB_site->query("SELECT id, subject FROM amartin ORDER BY views DESC LIMIT 5");
while($popular = $DB_site->fetch_array($pop)) {
$populars['subject'] = $popular['subject'];
$populars['id'] = $popular['id'];
}
eval("\$popularbit .= \"".fetch_template('article_list_bit')."\";");
eval("\$article[popular] = \"".fetch_template('article_pop')."\";");
unset($popular);
$DB_site->free_result($pop);
What else Do I need for it to display the list? I only get the very last item of the list..... It's just not looping right

what I miss?