This site is mobile accessible. Press the "Tap Here" button to use a different font-size.


Smartphone icons created by Freepik - Flaticon

The PHP Date() Function

Create Dates From Strings With strtotime()

The next six Saturdays are:
Jan 18
Jan 25
Feb 01
Feb 08
Feb 15
Feb 22

<?php
$startdate=strtotime("Saturday");
$enddate=strtotime("+6 weeks", $startdate);

while ($startdate < $enddate) {
  echo "" . date("M d", $startdate) . "<br>";
  $startdate = strtotime("+1 week", $startdate);
}
?>