<?php $start = new DateTime('2008-12-29 00:00'); $end = new DateTime('2009-01-7 00:00'); $point = $start; while($point <= $end){ echo $point->format('YW') . "\t"; echo $point->format('m-d-Y') . "\n"; $point = $point->modify('next week'); }
You have javascript disabled. You will not be able to edit any code.