-6

i want to increment the current date by one month which is in d/m/Y format but i have no idea about this,can any one give me a relevant example.

thanks in advance

fresher
  • 127
  • 11

1 Answers1

2

In PHP you do this:

$time = strtotime("+1 month", time());
$date = date("d/m/Y", $time);
chrisbjr
  • 628
  • 4
  • 10