ComputerHelp808
Newbie
- Nov 8, 2017
- 35
- 11
Thanks guys
Rick
Code:
$lastmod=strtotime($lastmod);
$today = date("Y-m-d");
if ($today < $lastmod+strtotime('+7 days')) {exit; }
//$lastmod is already in the y-m-d format so I didn't think I needed to add that
Rick