Like if today is Thursday, then I want to display Friday using php date() function.
For example, the below code will show the current month but the next day of the month. It worked. <?php echo date("M "), date("d")+1 ?>
So I was trying through this one <?php echo date("l")+1, date("d")+1 ?>
and it fooled me :(.