A computer is a tool, like a hammer, just don't use your hammer on your computer.
Sunday, April 8, 2007
PHP Add Date
To add 7 days to today's date in PHP do this, $somevariable = mktime(0, 0, 0, date("m") , date("d")+7, date("Y")); $datevariable = date('Y-m-d', $somevariable)
No comments:
Post a Comment