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