'; $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 .= '
' . zen_image(DIR_WS_IMAGES . $random_specials_sidebox_product->fields['products_image'], $random_specials_sidebox_product->fields['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT) . '
' . $random_specials_sidebox_product->fields['products_name'] . '
' . $specials_box_price . '
'; $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 .= '
' . $sp .'
' . $sp .'
'; } 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