Result Size:
625 x 571
tryphp_date7.php:
<!DOCTYPE html> <html> <body> <?php $startdate=strtotime("Saturday"); $enddate=strtotime("+6 weeks", $startdate); while ($startdate < $enddate) { echo date("M d", $startdate) . "<br>"; $startdate = strtotime("+1 week", $startdate); } ?> </body> </html>
Oct 07
Oct 14
Oct 21
Oct 28
Nov 04
Nov 11