I have a form that receives a time value:
$selectedTime = $_REQUEST[\'time\'];
The time is in this format - 9:15:00 - which is 9:15am. I t
You can use below code also.It quite simple.
$selectedTime = "9:15:00"; echo date('h:i:s',strtotime($selectedTime . ' +15 minutes'));