Well, I'm throwing in the towel. Let's say I have two timestamps:
<?
$start = mktime(0,0,0,4,0,2001); // April 2001
$end = mktime(0,0,0,2,28,2003); // February 2003
?>
I want to make a loop that prints each month/year between the two stamps. I'd really appreciate some help on this.
TIA!