Date Calculations using Unix Timestamps (116)
 <?php
$tomorrow 
mktime(000date("m"), 
date("d")+1date("y"));
echo 
"Tomorrow is ".date("m/d/y"$tomorrow); 
?>