คือว่าผม ต้องการนับจำนวน สมาชิก แยกตามประเภท คือว่านับใน sql ก็ OK ครับ
select count(*) ,type from member group by 'type'
แต่ว่า ถ้าต้องการ echo ผล count ออกมาในหน้าเว็บเพจว่า
type a = ....
type b = .....
ต้องสั่งยังไงครับผม
$sqlgroup ="select count(*),type from member group by 'type'";
$result = mysql_query($sqlgroup,$conn);
while($rsgroup=mysql_fetch_array($result)){
echo $rsgroup[0],$rsgroup[1];
}
<?php
$sqlgroup = "SELECT COUNT(*) AS count, type
FROM member
GROUP BY 'type'";
$result = mysql_query($sqlgroup,$conn);
while ( $rsgroup = mysql_fetch_array($result) )
{
echo "type : {$rsgroup['type']} = {$rsgroup['count']}<br />";
}
?>