$rs_detail=$db->query('select field_date, sum(...) from detail where .... group by field_date');
$old_year_month = '';
while($rs_detail as $ro){
if(substr($ro['field_date'], 0,7)>$old_year_month){
if($old_year_month>''){
echo '</table><div>'; // close table
}
echo '<div class=""><table class="">'; // open new div / table
$old_year_month=substr($ro['field_date'], 0,7);
}
echo '<tr><td>data</td></tr>'; // detail data
}
echo '</table><div>'; // close table
ใส่ class กำหนด layout และ อื่นๆ ที่จำเป็น เอาเองนะครับ