<? $sql="Select ชื่อ cout(*) อาการป่วย, ชนิดยา, วันที่, สถานภาพ
From ชื่อตาราง
WHERE สถานะของสมาชิก = $id//ค่าของสถานที่ส่งมา
GROUP BY อาการป่าย
HAVING วันที่
BETWEEN 'xx/xx/xxxxx' AND 'xx/xx/xxxxx' ";
$result = mysql_query($sql) or die( mysql_error()) ;
while ($row = mysql_fetch_array($result))
{
echo แสดงค่าที่ต้องการออกมา
}