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
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
In PHP you do this:
$time = strtotime("+1 month", time());
$date = date("d/m/Y", $time);