I'm trying to calculate 30 days into the future, and what the week day, day and year will be then.
date("F d, Y", date("d")+30);
Doesn't work... I cannot wrap my brain around this for some reason.
Thanks.
Jason
I'm trying to calculate 30 days into the future, and what the week day, day and year will be then.
date("F d, Y", date("d")+30);
Doesn't work... I cannot wrap my brain around this for some reason.
Thanks.
Jason
Figured it out....
(86400 * 30) = 2592000
date("F d, Y", time()+2592000)
jason
Jason,
Thank you for the help. This really solved my date calculation issues.
Thanks again. I love this site!!
Ed Zeak