[ Index ]
 

Code source de osCommerce 2.2ms2-060817

Accédez au Source d'autres logiciels libres

Classes | Fonctions | Variables | Constantes | Tables

title

Body

[fermer]

/catalog/includes/modules/ -> also_purchased_products.php (source)

   1  <?php
   2  /*
   3    $Id: also_purchased_products.php,v 1.21 2003/02/12 23:55:58 hpdl Exp $
   4  
   5    osCommerce, Open Source E-Commerce Solutions
   6    http://www.oscommerce.com
   7  
   8    Copyright (c) 2003 osCommerce
   9  
  10    Released under the GNU General Public License
  11  */
  12  
  13    if (isset($HTTP_GET_VARS['products_id'])) {
  14      $orders_query = tep_db_query("select p.products_id, p.products_image from " . TABLE_ORDERS_PRODUCTS . " opa, " . TABLE_ORDERS_PRODUCTS . " opb, " . TABLE_ORDERS . " o, " . TABLE_PRODUCTS . " p where opa.products_id = '" . (int)$HTTP_GET_VARS['products_id'] . "' and opa.orders_id = opb.orders_id and opb.products_id != '" . (int)$HTTP_GET_VARS['products_id'] . "' and opb.products_id = p.products_id and opb.orders_id = o.orders_id and p.products_status = '1' group by p.products_id order by o.date_purchased desc limit " . MAX_DISPLAY_ALSO_PURCHASED);
  15      $num_products_ordered = tep_db_num_rows($orders_query);
  16      if ($num_products_ordered >= MIN_DISPLAY_ALSO_PURCHASED) {
  17  ?>
  18  <!-- also_purchased_products //-->
  19  <?php
  20        $info_box_contents = array();
  21        $info_box_contents[] = array('text' => TEXT_ALSO_PURCHASED_PRODUCTS);
  22  
  23        new contentBoxHeading($info_box_contents);
  24  
  25        $row = 0;
  26        $col = 0;
  27        $info_box_contents = array();
  28        while ($orders = tep_db_fetch_array($orders_query)) {
  29          $orders['products_name'] = tep_get_products_name($orders['products_id']);
  30          $info_box_contents[$row][$col] = array('align' => 'center',
  31                                                 'params' => 'class="smallText" width="33%" valign="top"',
  32                                                 'text' => '<a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $orders['products_id']) . '">' . tep_image(DIR_WS_IMAGES . $orders['products_image'], $orders['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT) . '</a><br><a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $orders['products_id']) . '">' . $orders['products_name'] . '</a>');
  33  
  34          $col ++;
  35          if ($col > 2) {
  36            $col = 0;
  37            $row ++;
  38          }
  39        }
  40  
  41        new contentBox($info_box_contents);
  42  ?>
  43  <!-- also_purchased_products_eof //-->
  44  <?php
  45      }
  46    }
  47  ?>


Généré le : Mon Nov 26 19:48:25 2007 par Balluche grâce à PHPXref 0.7
  Clicky Web Analytics