RE: Is it possible?

Japes <[email protected]> 13 Sep 2003 05:51:37 -0000
Newsgroups gmane.comp.web.oscommerce.installation
Message-ID <734e13a2e37e325fd96c3acf19385322@osCommerce-Forums>
This message was sent from: Installation and Configuration
http://forums.oscommerce.com/viewtopic.php?p=228781#228781
----------------------------------------------------------------

[code] $description_query = tep_db_query("select language_id, products_name, products_description, products_url from " . TABLE_PRODUCTS_DESCRIPTION . " where products_id = '" . (int)$products_id . "'");
            while ($description = tep_db_fetch_array($description_query)) {
              tep_db_query("insert into " . TABLE_PRODUCTS_DESCRIPTION . " (products_id, language_id, products_name, products_description, products_url, products_viewed) values ('" . (int)$dup_products_id . "', '" . (int)$description['language_id'] . "', '" . tep_db_input($description['products_name']) . "', '" . tep_db_input($description['products_description']) . "', '" . tep_db_input($description['products_url']) . "', '0')");[/code]

Is it this portion, or is there more that needs attention?

Just trying to save you from having to be too specific.