单击不同类别时如何更改和显示选择计数查询的结果?我有查询,这对我有用,并给了我结果每个类别中有多少添加的项目。
counting results
但是当我点击每个类别时我想改变?
计数查询
<?php
$querycount=mysql_query("SELECT COUNT(*) AS count FROM products GROUP BY cid")
or die ("Product Count Query");
$rowcount=mysql_fetch_array($querycount);
echo $rowcount['count']?>
例如我想要这样
mysql数据库中有两个类别
1) Jeans // when i click on jeans it should be display (10 items)
2) Shirts // when i click on shirts it should be display (20 items)
results
现在当类别页面更改时我该如何更改?