function increase_date($Mon, $Day, $Hou, $Min)
{
return date("Y-m-d H:i:s", mktime((date("G")+$Hou), (date("i")+$Min), date("s"), (date("m")+$Mon), (date("d")+$Day), date("Y")));
}
ok... what this funcion does is that it increses today's date with what you tell it...
if you call increas_date(1,1,1,1); it will tell you what date and time it is in 1 month, 1 day, 1 hour and 1 minute... Hope you can use it...
Andreas Bernhardsen