Jump to content

(Resolu)Requete pour lien vers categorie


Recommended Posts

Bonjour a tous !

Je cherche a faire un bouton de la page produit à la page catégorie (ca sert a rien de me dire : Mais, il y a déjâ le fil d'arriane !)

Donc j'ai créer un bouton qui renvoie à une fonction : getCategorygraphsiste


Et voila la requete que j'ai faite :

$identiteproduit = (intval(Tools::getValue('id_product')));
           $categorylistingartiste = 1;


           $result = Db::getInstance()->getRow('SELECT `id_category` FROM `'._DB_PREFIX_.'category_product`
                                               WHERE `id_product` = '.intval($identiteproduit)'
                                               AND `id_gategorie` != '.intval($categorylistingartiste)'');

           $soluc = $result['id_category'];

   return _PS_USE_SSL_.__PS_BASE_URI__.'category.php?id_category='.$soluc;



Ma requete marche très bien sans le

AND `id_gategorie` != '.intval($categorylistingartiste)



Mais j'en ai bsoin puisque un produit à la catégorie 1 par default, qui renvoie au listing des categorie..

Je fait mal ma requête ? Merci de m'éclaircir

Link to comment
Share on other sites

BOn j'ai rien dit, j'avais deux erreur de syntaxe, problème résolu mon bouton marche très bien

ma nouvelle requtte :


'SELECT `id_category`
               FROM `'._DB_PREFIX_.'category_product`
               WHERE id_product = '.intval($identiteproduit).' AND id_category != '.intval($categorylistingartiste)



a +

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...