This day a week ago: "; echo $montnum."/".$daynum."/".$lastweek['year']."

"; } //SHOW LAST MONTH ARCHIVE $today = getdate(); $this_month = $today['mon']; $this_day = $today['mday']; $this_year = $today['year']; if ($this_month == "1") { $last_month = "12"; $this_year = $this_year-1; } else { $last_month = $this_month-1; } if ($this_day < 10) { $this_day = "0".$this_day; } if ($last_month < 10) { $last_month = "0".$last_month; } $lastmontharchive = "/home/public_html/PATH/TO/ARCHIVES/".$this_year."_".$last_month."_".$this_day.".php"; if (file_exists($lastmontharchive)) { echo "

This day a month ago: "; echo $last_month."/".$this_day."/".$this_year."

"; } ?>