I have the php array like this:
Array
(
[0] => Array
(
[time_stamp] => 1287484988
[date_time] => Tuesday, 19 October 2010 16:13:7
[day] => 19
[month] => 10
[year] => 2010
[time_spent] => 41
)
[1] => Array
(
[time_stamp] => 1287484662
[date_time] => Tuesday, 19 October 2010 16:7:41
[day] => 19
[month] => 10
[year] => 2010
[time_spent] => 215
)
)
Suppose in january the total number of days is: 31
How do i loop through the number of days(31) to get the SUM of time_spent(time_spent for every day for a given month) using GROUP BY time_stamp where day=$day,month=$month,year=$year using php
Thank u.