Forum Moderators: coopster

Message Too Old, No Replies

Next Month Coding

         

branmh

12:58 pm on Aug 18, 2003 (gmt 0)

10+ Year Member



Is there a way to GET the Next Month Coding (ex: Aug will show as Sep)

jatar_k

4:57 pm on Aug 18, 2003 (gmt 0)

WebmasterWorld Administrator 10+ Year Member



try strtotime [ca.php.net] and strftime [ca.php.net]

you could do
$nextmth = strtotime("+1 month");
echo strftime("%B",$nextmth);

branmh

5:33 pm on Aug 18, 2003 (gmt 0)

10+ Year Member



Is there a way when Aug 31st rolls over that it would still show September, currently when manually rolling over to Aug 31st, it show October...

jatar_k

5:37 pm on Aug 18, 2003 (gmt 0)

WebmasterWorld Administrator 10+ Year Member



its a lot of handling to do it perfectly but you could do "+30 days" maybe and that will handle most months except february.