With these variables..
$month1 = 8; // A month in the past
$month2 = date('n'); // Current month
...I need to a loop that outputs this:
August, September, October, November, December, January, February, March
8 is obviously the 8th month, hence August.
I realise the vars are using numeric representation, but the output needs to be a comma separated list of full textual representations of the month names.
Any help would be awesome.