If you are displaying more than one date (i.e., $rep
is greater than 0), each successive date displayed
is increnmented by:
the total number of days ($nod)
+ the total number of months ($nom)
+ the total number of years ($noy)
$datstart = "2003-07-21"; /* the starting date */
$rep = 3; /* number of future dates to display */
$nod = 7; /* number of days in the future to increment the date */
$nom = 0; /* number of months in the future to increment the date */
$noy = 0; /* number of years in the future to increment the date */