welcomewiki has just posted in the PHP Forum forum of Wiki Newforum under the title of PHP Date().
This thread is located at http://www.wikinewforum.com/showthread.php?t=5862
Here is the message that has just been posted:
***************
*Syntax*
mktime(hour,minute,second,month,day,year,is_dst)
To go one day in the future we simply add one to the day argument of mktime():
<?php
$tomorrow = mktime(0,0,0,date("m"),date("d")+1,date("Y"));
echo "Tomorrow is ".date("Y/m/d", $tomorrow);
?>
The output of the code above could be something like this:
Tomorrow is 2006/07/12
***************