Version: 1.0
Type: Function
Category: Calendars/Dates
License: GNU General Public License
Description: Function that increment date with given days inputed.
function daysahead($no)
{
$prepare=mktime (0,0,0,date("m") ,date("d")+$no,date("Y"));
$future=strftime("%d-%m-%Y",$prepare);
return $future;
}