Hello,
This is what I am trying to achieve. I have two dates, let us say they are 2005-10-07 and 2006-01-04. I want to create a function that will be able to print all the months between two those dates inclusively. So in this example with those two dates above, it should print: October, November, December and January (or 10, 11, 12, 1)
I hope I am clear enough but to make sure, here is another example.
Date1: 2005-02-20
Date2: 2005-06-05
The function should print out: February, March, April, May, and June (or 2, 3, 4, 5, 6).
Thank you and have a great weekend!
-Ren