Adding months

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • SSG001
    New Member
    • Oct 2007
    • 110

    Adding months

    how to add months like say (20 months) to the current date

    and get a valid date
  • ronverdonk
    Recognized Expert Specialist
    • Jul 2006
    • 4259

    #2
    Originally posted by SSG001
    how to add months like say (20 months) to the current date
    and get a valid date
    See the standard PHP documentation on date and time functions. For this example it is[php]echo date('d F Y',strtotime('+ 20 months'));[/php]Ronald

    Comment

    Working...