Tabele, które się rozjeżdzają mają budowe:
<table border="0" width="95%" cellspacing="0" cellpadding="0" align="center"> <tr align="center"> Nowosci <td> <?php $new_products_query = tep_db_query("select p.products_id, p.products_image, p.products_tax_class_id, if(s.status, s.specials_new_products_price, p.products_price) as products_price from " . TABLE_PRODUCTS . " p left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id where products_status = '1' order by p.products_date_added desc limit " . MAX_DISPLAY_NEW_PRODUCTS); } else { $new_products_query = tep_db_query("select distinct p.products_id, p.products_image, p.products_tax_class_id, i
f(s.status, s.specials_new_products_price, p.products_price) as products_price from " . TABLE_PRODUCTS . " p left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id, " . TABLE_PRODUCTS_TO_CATEGORIES . " p2c, " . TABLE_CATEGORIES . " c where p.products_id = p2c.products_id and p2c.categories_id = c.categori
es_id and c.parent_id = '" . (int)$new_products_category_id . "' and p.products_status = '1' order by p.products_date_added desc limit " . MAX_DISPLAY_NEW_PRODUCTS); } $row = 0; $col = 0; echo ' <table width=100% cellspacing=0 cellpadding=0> <tr><td><img src=images/m61.gif width=362 height=5></td></tr> <tr><td class=bg4> <table cellspacing=0 cellpadding=0><tr> '; while ($new_products = tep_db_fetch_array($new_products_query)) { $new_products['products_name'] = tep_get_products_name($new_products['products_id']); $product_query = tep_db_query("select products_description from " . TABLE_PRODUCTS_DESCRIPTION . " where products_id = '" . (int)$new_products['products_id'] . "' and language_id = '" . (int)1 . "'"); $product = tep_db_fetch_array($product_query); $new_products['products_description'] = $product['products_description']; echo ' <td width=180 valign=top nowrap> <table cellspacing=0 cellpadding=0> <tr> <td align=center width=180><a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $new_products['products_id']) . '"></td><tr width=180><br><center><td colspan=0 align=center><img src=images/m36.gif width=180 height=1></td></tr><tr align=right> ' . tep_image(DIR_WS_IMAGES . $new_products['products_image'], $new_products['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT, '') . '</a></tr> <td valign=top align=center nowrap> <table cellspacing=0 cellpadding=0> <tr><td class=cy valign=top align=center height=35 width=170><a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $new_products['products_id']) . '">' . $new_products['products_name'] . '</a></td><tr><td colspan=2 align=center><img src=images/m36.gif width=180 height=1></td></tr><tr><td colspan=2 height=8></td></tr> <tr><td class=cy1 align=center>'.$currencies->display_price($new_products['products_price'], tep_get_tax_rate($new_products['products_tax_class_id'])).'</td></tr> </table> </td> </tr> <tr><td colspan=2 height=8></td></tr> <tr><td colspan=2 align=center><img src=images/m36.gif width=143 height=1></td></tr> <tr><td colspan=2 height=12></td></tr> <tr><td colspan=2 align=center><a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $new_products['products_id']) . '">' . tep_image_button('small_view.gif', IMAGE_BUTTON_BUY_NOW) . '</a> <a href="' . tep_href_link(basename($PHP_SELF), tep_get_all_get_params(array('action')) . 'action=buy_now&products_id=' . $new_products['products_id']) . '">' . tep_image_button('button_in_cart.gif', IMAGE_BUTTON_BUY_NOW) . '</a></td></tr> <tr><td colspan=2 height=12></td></tr> </table> </td> <!-- <tr><td valign=top nowrap></td> <td width=108 valign=top> <table cellspacing=0 cellpadding=0 width=100 height=110 align=right> <tr><td><b></b><br><br class=px2></td></tr> <tr><td class=bc1 nowrap></td></tr> <tr><td></td></tr> <tr><td></td></tr> </table> </td></tr> </table> </td> --> '; $col ++; if ($col > 1) { $col = 0; $row ++; echo ' </tr> </table> <table cellspacing=0 cellpadding=0> <tr><td><img src=images/m58.gif width=359 height=1></td></tr> </table> <table cellspacing=0 cellpadding=0 align=center width=360 nowrap> <tr> '; } echo ' </tr></table> </td></tr> <tr><td><img src=images/m60.gif width=362 height=5></td></tr> </table> '; ?> </td></tr></table>
Dzięki za pomoc. Pozdrawiam