Return the MySQL-formatted date for 60 days from today (PHP)
// Get the date in MySQL date format for 60 days from today
$new_expiration_date = date('Y-m-d',mktime(0,0,0,date('m'),date('d')+60,date('Y')));