Buggyboy Posted October 6, 2003 Report Share Posted October 6, 2003 Moin! Ich habe aus meinem alten OSC-Shop die Funktion f?r: Artikel ist _ mal verf?gbar und Artikel wurde schon _ mal angesehen in diese product_info.php eingesetzt. Nur leider werden mir die Ergebnisse nicht angezeit. Der Code sieht so aus: <tr> <td align="center" class="smalltext"><font color=red><?php echo 'Dieser Artikel ist noch ' . $product_info_values['products_quantity'] . ' mal verf?gbar'; ?></td> </tr> <td align="center" class="smalltext"><?php echo 'Dieser Artikel wurde bereits ' . $product_info_values['products_viewed'] . ' angesehen'; ?></font></td> </tr> Hat da vielleicht jemand eine Idee, was ich da noch ?ndern mu?, damit die Zahlen aus der DB eingetragen werden? Anschienend sind die Bezeichnungen wohl nicht mehr korrekt. Erstmal vielen Dank... Peter :bounce: Link to comment Share on other sites More sharing options...
mzanier Posted October 6, 2003 Report Share Posted October 6, 2003 du musst erstmal gucken ob deine felder auch in der SELECT query abgefragt werden... mfg, mario Link to comment Share on other sites More sharing options...
Buggyboy Posted October 7, 2003 Author Report Share Posted October 7, 2003 Hallo! Das hier ist doch die Query: <?php $product_info_query = xtc_db_query("select p.products_discount_allowed,p.products_id, pd.products_name, pd.products_description, p.products_model, p.products_quantity, p.products_image, pd.products_url, p.products_tax_class_id, p.products_date_added, p.products_date_available, p.manufacturers_id, pd.products_viewed from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd where p.products_status = '1' and p.products_id = '" . (int)$_GET['products_id'] . "' and pd.products_id = p.products_id and pd.language_id = '" . $_SESSION['languages_id'] . "'"); if (!xtc_db_num_rows($product_info_query)) { // product not found in database ?> Dort hab ich vor dem "from" die pd.products_viewed eingef?gt. Die p.products_quantity war ja schon enthalten. So ging es zumindest beim alten Shop. Ansonsten wei? ich es jetzt nicht... Link to comment Share on other sites More sharing options...
mzanier Posted October 7, 2003 Report Share Posted October 7, 2003 jo, aber holst du deine werte auch aus dem richtigen array ? $product_info_values[] wird die query dem array zugeweisen ? imho ist es $product_info[] wenn ich auf die schnelle nachdenk. Link to comment Share on other sites More sharing options...
Buggyboy Posted October 7, 2003 Author Report Share Posted October 7, 2003 Supergut. Du bist mein Held ;-} Jetzt klappt es. Hat sich halt doch etwas ge?ndert... Hier zu sehen: http://www.auktionsclub.de/nextcommerce/pr...&products_id=37 Vielen Dank... Peter Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.