Seiji Sogabe
sogab****@alles*****
2005年 6月 9日 (木) 23:29:40 JST
こんばんわ、曽我部です。 osc_298 wrote: > もう一つお聞きしたいのですが、ランダムな商品を横に並べる場合はプログラムの修正のみで大丈夫でしょうか? > 違うページも表示させようと思い作り込んで表示まで出来たのですが、 > 並びの方が縦に並んでしまいます。 表示するのに、infoBoxを使用しているので横に並べるのは難しいです。 すこし、いい加減な方法ですが、specials.phpを以下のソースに差し替えれば横に3つ並ぶと思います。 infoBoxのかわりにcontentBoxを使用しています。 --- STRAT --- define('SPECIAL_PRODUCTS_NUM', 3); if ($random_products = tep_random_select2("select p.products_id, pd.products_name, p.products_price, p.products_tax_class_id, p.products_image, s.specials_new_products_price from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd, " . TABLE_SPECIALS . " s where p.products_status = '1' and p.products_id = s.products_id and pd.products_id = s.products_id and pd.language_id = '" . $languages_id . "' and s.status = '1' order by s.specials_date_added desc limit " . MAX_RANDOM_SELECT_SPECIALS, SPECIAL_PRODUCTS_NUM)) { ?> <!-- specials //--> <tr> <td> <?php $info_box_contents = array(); $info_box_contents[] = array('text' => BOX_HEADING_SPECIALS); new infoBoxHeading($info_box_contents, false, false, tep_href_link(FILENAME_SPECIALS)); $info_box_contents = array(); $row = 0; $col = 0; foreach ($random_products as $random_product) { $info_box_contents[$row][$col] = array('align' => 'center', 'params' => 'class="boxText" width="33%" valign="top"', 'text' => '<a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $random_product["products_id"]) . '">' . tep_image(DIR_WS_IMAGES . $random_product['products_image'], $random_product['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT) . '</a><br><a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $random_product['products_id']) . '">' . $random_product['products_name'] . '</a><br><s>' . $currencies->display_price($random_product['products_price'], tep_get_tax_rate($random_product['products_tax_class_id'])) . '</s><br><span class="productSpecialPrice">' . $currencies->display_price($random_product['specials_new_products_price'], tep_get_tax_rate($random_product['products_tax_class_id'])) . '</span>'); $col++; if ($col > 2) { $col = 0; $row++; } } new contentBox($info_box_contents); ?> </td> </tr> <!-- specials_eof //--> <?php } ?> --- END --- では。 -- sogab****@alles*****