Hello
This is part of the code that gives a time selection:
// THE PICKUP HOUR
for ($i = 7; $i <= 23; $i++)
{
$thehour = $i . ":00";
if ($i == $myhour)
{
$pickuphour[] = "<option selected>$thehour</option>";
}else{
$pickuphour[] = "<option>$thehour</option>";
}
}
It displays a dropdown menu with
07:00
08:00
09:00 etc.
Is it possible to change something to get it to show the time every 1/4 hour like:
07:00
07:15
07:30
07:45
08:00 etc.
Thanks