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
strtotime returns the current timestamp and date is to format timestamp
$date=strtotime(date("h:i:sa"))+900;//15*60=900 seconds $date=date("h:i:sa",$date);
This will add 15 mins to the current time