'; $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 .= '
' . zen_image(DIR_WS_IMAGES . $random_whats_new_sidebox_product->fields['products_image'], $random_whats_new_sidebox_product->fields['products_name'], 80, 100) . '
' .zen_trunc_string($random_whats_new_sidebox_product->fields['products_name'],100) . '
' . $whats_new_price . '
'; $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 .= '
' . $wn .'
' . $wn .'
'; } 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