For example, if today is Thursday, then I want to show Friday using the php date () function. For example, the code below will show the current month, but the next day of the month. It worked. <?php echo date("M "), date("d")+1 ?>
So, I tried this <?php echo date("l")+1, date("d")+1 ?> , And it tricked me: (.
source share