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....

    1 mn: 60 (sec)

    1 hr: 3600 (sec)

    1 dy: 86400 (sec)

    (86400 * 30) = 2592000

    date("F d, Y", time()+2592000)

    jason

      a year later

      Jason,

      Thank you for the help. This really solved my date calculation issues.

      Thanks again. I love this site!!

      Ed Zeak

        Write a Reply...