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