Topic: Date plus 2 days
If this is the PHP date format:
echo date("d M Y");
how do I add 2 days to the current date?
If it's 31 December 2009 I don't want 33 December 2009.
Presumably I have to create variables for p and M and Y and add 2 days to d and then check if it goes beyond the month and year somehow.
