$sql =mysql_query("select range from room group by range"); // range คือช่วงเวลา หรือข้อมูลแถว row
while($rs=mysql_fetch_array($sql)){
echo "<tr>"
$sql2=mysql_query("select picture from room where rang='$rs[range'] order by zone ASC"); //zone คือโซน เรียงจาก a-z
while($rs2=mysql_fetch_array($sql2)){
echo "<td><img src="$rs2[picture]"></td>"
}
echo "</tr>";
}