I have this PHP code:
$end=date(\'Y-m-d\');
I use it to get the current date, and I need the date 5 years in the future, something like:
$date = strtotime($row['timestamp']); $newdate = date('d-m-Y',strtotime("+1 year",$date));