![]() |
Displaying Total Number Items Per Parent Category - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: CodeIgniter 4 (https://forum.codeigniter.com/forumdisplay.php?fid=28) +--- Forum: CodeIgniter 4 Support (https://forum.codeigniter.com/forumdisplay.php?fid=30) +--- Thread: Displaying Total Number Items Per Parent Category (/showthread.php?tid=78429) |
Displaying Total Number Items Per Parent Category - demyr - 01-19-2021 Hi there, I have a foreach for products and as usual they all have a parent_category column. I need to have the total number of products for each category but cannot get those numbers. One of the examples I have tried so far: PHP Code: public function all_products($product_lang){ Actually I get the numbers but as I group them, my foreach doesn't show every item. If I don't group them only 1 result returns. RE: Displaying Total Number Items Per Parent Category - AndresHDZ - 01-19-2021 Let me see if I understand, you are trying to get how many products there are in each category grouping your products, right? PHP Code: public function all_products($product_lang){ RE: Displaying Total Number Items Per Parent Category - demyr - 01-19-2021 God. It worked like a charm and believe me I had never thought such a long select clause. Thank you very very much. Btw, yes, you got me true ![]() -- Btw, I don't understand why I cant rate you RE: Displaying Total Number Items Per Parent Category - AndresHDZ - 01-19-2021 Good to see it works, about rate, don't worry, I'm a new member here, that's the reason. |