Skip to content
Advertisement

PHP categories showing only one item

I’m trying to create a categories list, where user will be able to choose item with certain category, but as soon as I’m opening any of the categories, where “soon = ‘2’”, there is only one item coming up. Everything else works.

The code bellow is for categories, where user can chose which caegory s/he want to see.

JavaScript

Than here is everything else, that is suppose to exectute commands that will show products from category that user choose. The issue comes upp where ‘if($row[“soon”] == “2”)’ is.

JavaScript

Advertisement

Answer

In the original post was duplicate $row = $result->fetch_assoc(); statement.

In updated post there is first condition out of the while loop.

Solution bellow is wrapping all the if($row['soon'] into the while loop:

JavaScript

Recommendation: Always debug your scripts with enabled PHP Error Reporting!

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement