Hello friends🙂 How can I generate dates for a weekly report. I just need to query the upcoming Monday - Monday. So if the day is Tuesday I would like the upcoming Monday - next Monday. Tracy
use the strtotime and date functions
if (strtolower(date('l')) !="monday"){ $next_mon = date("Y-M-d",strtotime("next monday")); }else{ echo "today is monday"; }