';
$featured_box_counter = 0;
while (!$random_featured_product->EOF) {
$featured_box_price = zen_get_products_display_price($random_featured_product->fields['products_id']);
$fp .= '
';
$featured_box_counter++;
$random_featured_product->MoveNextRandom();
}
$total = $featured_box_counter;
if ($total > 1) { //if more than one featured product exists in the db then scrolling begins
$content .= '';
}
elseif ($total == 1) { // If only one featured product exists in the db then the box will remain static
$content .= $fp;
}
else { // If there are no featured products then this text is displayed
$content .= "No featured products this month!";
}
$content .= '';
//EOF