Bonjour,

Tout est dit dans le titre : je cherche a creer une page qui affiche tous les produits d'une categorie bien specifique.

J'ai bien essaye en faisant un copier-coller de cette requete prise dans l'index :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
      $listing_sql = "select " . $select_column_list . " p.products_id, p.manufacturers_id, p.products_price, p.products_tax_class_id, IF(s.status, s.specials_new_products_price, NULL) as specials_new_products_price, IF(s.status, s.specials_new_products_price, p.products_price) as final_price from " . TABLE_PRODUCTS . " p left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id, " . TABLE_PRODUCTS_DESCRIPTION . " pd, " . TABLE_MANUFACTURERS . " m, " . TABLE_PRODUCTS_TO_CATEGORIES . " p2c where p.products_status = '1' and p.manufacturers_id = m.manufacturers_id and m.manufacturers_id = '" . (int)$HTTP_GET_VARS['manufacturers_id'] . "' and p.products_id = p2c.products_id and pd.products_id = p2c.products_id and pd.language_id = '" . (int)$languages_id . "' and p2c.categories_id = '4' ";
(4 est l'ID de ma categorie)

Mais lorsque j'essaye d'afficher une donnee, rien n'apparait. De plus je n'ai trouve aucun post ni contribution a ce sujet.

Quelqu'un aurait-il une piste pour m'aider ?

Merci d'avance