Got a quick question. Without going into to much detail, i need to take a future date and subtract 3 months from it. the date is already a unix timestamp. When its 3 months from whatever today’s date is, i need to have it do something.
The page was done, but its looking only looking at the close date and today’s date, i need to change it to look at the 3 month date and today
This the comparison
[php]$today = date(“d-m-Y”);
if($id[‘close_date’] < strtotime($today)) {[/php]
Any help would be appreciated.