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:
Sep 21
Sep 28
Oct 05
Oct 12
Oct 19
Oct 26

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

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