I'm pulling a variable in from a database. It's a timestamp in this format:
20060926000000 - Today at the turn of the day.
How can I add a day to that, and make sure that I get the correct date, especially if its the turn of the month with php?
I tried this, but it doesn't work:
$newtime = date('YmdHis', ($databasetime + 1000000));