Possible Duplicate:
Format mysql datetime with php
I want to calculate for example 10 days after a given date, it's easy when it's in "Y-m-d" format using strtotime, but in my case, I'm reading the given date from mysql which is in "Y-m-d H:i:s" format, now strtotime seems to not working on such date formats.
How I could calculate 10 days after a given date in "Y-m-d H:i:s" format?
Thank you in advance, Behzad