Hi Guys
What I am looking to do is create an array that contains the next 12 months starting from the current month we are in. It also needs to include the respective years.
The array would need to look something along these lines...
Array
(
[2005] => Array
(
[0] => 09
[1] => 10
[2] => 11
[3] => 12
)
[2006] => Array
(
[0] => 01
[1] => 02
[2] => 03
[3] => 04
[4] => 05
[5] => 06
[6] => 07
[7] => 08
)
)
I am still fairly new to arrays and I am actually not sure where on earth to even begin creating this array.
Thanks