Hi
Anyone have a good idea for a loop that could populate a select list(form) with time values from 08:00 - 18:00 (24h time format) with an interval of 15 min between each <option value> ?
<select name='time'>
<option value='08:00'>08:00</option>
<option value='08:15'>08:15</option>
<option value='08:30'>08:30</option>
...
<option value='18:00'>18:00</option>
</select>
Kinda stuck with this one...help would be much appreciated.