'; $featured_box_counter = 0; while (!$random_featured_product->EOF) { $featured_box_price = zen_get_products_display_price($random_featured_product->fields['products_id']); $fp .= '
' . zen_image(DIR_WS_IMAGES . $random_featured_product->fields['products_image'], $random_featured_product->fields['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT) . '
' . $random_featured_product->fields['products_name'] . '
' . $featured_box_price . '
'; $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 .= '
' . $fp .'
' . $fp .'
'; } 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