$date = mktime(0,0,0,date("m")+$_POST['m'], date("d"), date("y"));
$d = date("l F d,Y", $date);
echo $d;
The problem is if the user is topping off their account it would get rid of what they had. For example:
Saturday July 1, 2006 -- Todays date
Tuesday August 1, 2006 -- when my account would expire
so I decide to add 3 months to it, I want
Wednesday Novemember 1, 2006 not Saturday October 1, 2006
Any suggestions?
--
Thanks in Advance
