yaya Posted April 14, 2011 Share Posted April 14, 2011 Bonjour,dans mon BO j'ai integré un systeme de hit pour chaque produit'.$product['hits_view'].' cela me donne : ce produit a été vu X fois pour ce fournisseursi j'ai X produits pour le même fournisseur je voudrais additionner tous les hits afin de dire :tous les produits de ce fournisseurs ont ete vus X foisQuand puis je avoir la somme de tous ces hitsmerci de votre aide Link to comment Share on other sites More sharing options...
Broceliande Posted April 15, 2011 Share Posted April 15, 2011 Bonjour,Comment le champ hits_view est-il récupéré avant affichage? Link to comment Share on other sites More sharing options...
yaya Posted April 15, 2011 Author Share Posted April 15, 2011 Bonjour,J'ai crée une fonctionpublic function hitViewProduct($id) { $sql = 'UPDATE `'._DB_PREFIX_.'vue_products` SET `hits_view`=`hits_view`+1 WHERE `id`= "'.intval($id).'" '; Db::getInstance()->Execute($sql); } Link to comment Share on other sites More sharing options...
Broceliande Posted April 15, 2011 Share Posted April 15, 2011 Bonjour,J'ai crée une fonctionpublic function hitViewProduct($id) { $sql = 'UPDATE `'._DB_PREFIX_.'vue_products` SET `hits_view`=`hits_view`+1 WHERE `id`= "'.intval($id).'" '; Db::getInstance()->Execute($sql); } Un truc comme ça SELECT SUM(v.hits_view) FROM ps_product AS p INNER JOIN ps_vue_products ON (v.id=p.id_product) as v WHERE p.id_supplier= ? AND p.id_product= ? ? Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now