• I am trying to show the tomorrow date.
    I have this code for today <?php echo date_i18n(“Y-m-d”?>

Viewing 1 replies (of 1 total)
  • Well, this works with the normal date function:

    $date = date("Y-m-d", strtotime("tomorrow"));
    echo $date;

Viewing 1 replies (of 1 total)
  • The topic ‘How to show tomorrow date’ is closed to new replies.