RogueDogg1
Programmer
Ok I have this code I found that I think will work with what I need. I need it to add 2 days to the current date.
But it's echo'ing this: 1152939600 <-- makes no sense
What am I missing here? Formatting maybe?
Code:
<? $newdate = mktime(0, 0, 0, date("m") , date("d")+2, date("Y")); ?>
<? echo "$newdate"; ?>
But it's echo'ing this: 1152939600 <-- makes no sense
What am I missing here? Formatting maybe?