I have categories currently in my HTML code as follows:
<ul>
<li>Category 1: ($Count)</li>
<li>Category 2: ($Count)</li>
<li>Category 3: ($Count)</li>
</ul>
I want list the count of number of elements each category contain. i could get the count a of category using following SQL syntax:
SELECT COUNT(element) FROM category WHERE cid = 1
However, I don't know how to bind this up to each category in the HTML code.
I can only think of one other way of implementing this: make the category name dynamic by storing it also in the database, then select all the categories with count.
