$sql1= "select count(TYPE) from document where TYPE='ป่วย' and PERSON_ID='".$PERSON_ID."' ";
$query=mysql_query($sql1);
$row1=mysql_fetch_array($query);
$sql1= "select count(TYPE) as count_type from document where TYPE='ป่วย' and PERSON_ID='".$PERSON_ID."' ";
จะใช้ $row["count_type"];
ลองดูนะครับ
Date :
2009-04-13 18:44:58
By :
dr.website
No. 5
Guest
ขอบคุณค่ะ
แต่ว่าพอใส่โค้ดลงไปมันแสดงเลข1ออกมาหมดเลยค่ะ
อันไหนที่ไม่มีก้อแสดงมาให้อ่ะค่ะ
อันนี้ตัวอย่างโค้ด
Quote:
$sql1= "select count(TYPE) from document where TYPE='ป่วย' and PERSON_ID='".$PERSON_ID."' ";
$query=mysql_query($sql1);
$row1=mysql_fetch_array($query);
$show1 = $row1['0'];
$sql2= "select count(TYPE) from document where TYPE='ลากิจส่วนตัว' and PERSON_ID='".$PERSON_ID."' ";
$query=mysql_query($sql1);
$row2=mysql_fetch_array($query);
$show2 = $row2['0'];
$sql3= "select count(TYPE) from document where TYPE='คลอดบุตร' and PERSON_ID='".$PERSON_ID."' ";
$query=mysql_query($sql1);
$row3=mysql_fetch_array($query);
$show3 = $row3['0'];