我有一種情況,我需要生成每個月的總銷售額。在php中的二維數組的總和
我可以在某個區域顯示12個月的總銷售額,但我需要顯示某個區域的任何月份的總銷售額。即:總部地區6月份的總銷售額。 我的示例代碼如下:
while($area = mysql_fetch_array($exe_area))
{
for ($m=1; $m<=12; $m++) {
.........
echo $total_sold;
$sales_of_year+= $total_sold;
} // end of month listing....
echo $sales_of_year;
} // end of area listing...
不明白..請你給我從輸出過程中產生 – user2982056