Thanks, I was thinking that but I said to my self it can not be that simple
I had the code writen like the below code and it did not work:
<?php
$default_timezone = "UTC"; // take out once system has default timezone set
date_default_timezone_set ( $default_timezone ); // take out once system has default timezone set
$three_days_time = strtotime('+3d');
echo date( "Y-m-d", $three_days_time);
?>
Code that works, may use change or not but it work
<?php
$default_timezone = "UTC"; // take out once system has default timezone set
date_default_timezone_set ( $default_timezone ); // take out once system has default timezone set
$three_days_time = strtotime('+3 days');
echo date( "Y-m-d", $three_days_time);
?>
Thanks for the response and help!
Sincerely,
Christopher