Hi there,
I have been looking through this forum and discovered that the way most people add X number of days to today's date is using this code:
echo mktime(0, 0, 0, date("n"), date("j") + 10, date("Y"));
When I do this, I get an output similar to this - 1156114800
I am not sure what I can do with this, I am trying to compare it to a date pre-entered into mysql. I also tried using strtotime("+1 day"), with a similar output again.
Thanks in advance,
Richard Stephens