I am passing a variable from a previous page, and am trying to do the following:
$_GET['compliance'];
$date = date('Y-m-d');
$nextyear = Date("Y-m-d", mktime(0,0,0,date("m"),date("d"),date("Y")+$compliance));
Bolded is the variable I'm passing from the previous page...basically the compliance variable is a number, either 1,2, or 3...so is doing the above possible...