i have a big problem and gotta get it done quick please. i need to add like a month to like Aug-28-2002 i tried it with mktime but was having problems and it would work? all help is appreciated thanks in advance
mktime should do it how are you doing it.
try
$hh=0; %mm=0; $ss=0;
$DD=28; $MM=8; $YY=2002;
echo date("d/m/Y", mktime($hh, $mm, $ss, $MM+1, $DD, $YY));
It should work fine.
Mark.