I want to create a dropdown that will take current time as start time and will end up till 24 hours, like till coming 24 hours so in between it will show time of every 15 minute
there are a couple of things. First on your first line you are missing the second parameter. Then you are using $tNow undefined.
$current_time = date('h:i A', time());
$end_hour = date("+24 hours", strtotime($current_time));
$tNow = strtotime($current_time);
echo "";
for($i = 0; $i <= 96; $i++) {
echo "";
$tNow = strtotime('+15 minutes', $tNow);
}