This code returns the last day of the current month:
<?PHP $dtLastDay = date("j/n/Y", mktime(0, 0, 0, date("m")+1 , date("d")-date("d"), date("Y"))); ?>
What I need is to add one year to this date. OR the last day of the current month one year from now.
Help would be very much appreciated!
Nick