I have trouble to increment time by 15 minutes to end time.
I tried date("H:i:s", strtotime('+15 minutes', strtotime($startTime)));
.
But it is not dynamic.
Here i have starttime and endtime.
$startTime = '09:00:00';
$endTime = '11:00:00';
And want to output like,
09:00:00
09:15:00
09:30:00
09:45:00
10:00:00
10:15:00
10:30:00
10:45:00
Thanks.