Jump to content

Creating a rolling year.


Recommended Posts

I have created a bar chart with flash, and using PHP to supply the data. My problem is my boss wants the information in a rolling year, starting with the current month and working out. For example, the graph would start in april and end in march. Right now I have the graph from Jan. to Dec. using an 2 dimensional array. One dimensional for the data and one for the month. What I can't figure out is how to start from the current month and end in the previous month. Any help with this would be a great help.

 

thanks,

Travis

Link to comment
https://forums.phpfreaks.com/topic/102946-creating-a-rolling-year/
Share on other sites

I have figured out this problem. Here is how I did it:

 

for ( $i = 0; $i < 12; $i += 1){
$monthArr[$i][1] = date("M",strtotime("+$i month"));
for ($j = 0; $j <12; $j += 1){
	if ($arrData[$j][1] == $monthArr[$i][1]){
		$newMonth[$i][1] = $monthArr[$i][1];
		$newMonth[$i][2] = $arrData[$j][2];
	}
}
}

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.