Hi,
I want some help in php like below :-
Todays’ date is 24-12-2015  which i get from date(“d-m-Y”). I want result like 25-12-2015.

 

Ravi Dobariya Default Asked on December 24, 2015 in Programming.
Add Comment
  • 1 Answer(s)
    <? php 
    
    //1 Day = 24*60*60 = 86400
    
    echo date("d-m-Y", time()+86400); 
    
    ?>
    pranav88raval Default Answered on December 28, 2015.
    Add Comment
  • Your Answer

    By posting your answer, you agree to the privacy policy and terms of service.