#native_company# #native_desc#
#native_cta#

Simple days ahead function

By Daniel
on October 1, 2002

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;
}