im trying to add 15 minutes to the current time and list it. but i need show it like below
15:30
15:45
16:00
16:15....
i used the below code
for($i = 15; $i <= 90; $i+=15)
{
echo date("H:i",strtotime('+'.$i.' minutes'))."<br>";
}
but i get the time like this
15:24
15:39
15:54
16:09
16:24
16:39
how can i round the minutes to be like 15,30, 45...?