2
Colleagues.
I have a combobox where I plan to store schedules from 07:00 to 22:00 with a 5 minute break. See below:
How do I do this in PHP? Unfortunately I don’t have any code ready in PHP, because I couldn’t find a logic.
<div class="input-group" style="width:100px">
  <select class="form-control" style="width:100px">
          <option value="">07:00</option>
  </select>
  <span class="input-group-addon" style="background-color: #FAFAFA">às</span>
  <select class="form-control" style="width:100px">
    <option value="">07:05</option>
  </select>
  <span class="input-group-btn">
        <button type="submit" name="Buscar" value="PorAcesso" class="btn btn-primary">+</button>
  </span>
</div>
